home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / lib / emacs / 19.22 / lisp / loaddefs.el < prev    next >
Text File  |  1993-11-26  |  247KB  |  5,688 lines

  1. ;;; loaddefs.el --- define standard autoloads and keys of other files
  2.  
  3. ;; Copyright (C) 1985, 1986, 1987, 1992, 1993 Free Software Foundation, Inc.
  4.  
  5. ;; Maintainer: FSF
  6. ;; Keywords: internal
  7.  
  8. ;; This file is part of GNU Emacs.
  9.  
  10. ;; GNU Emacs is free software; you can redistribute it and/or modify
  11. ;; it under the terms of the GNU General Public License as published by
  12. ;; the Free Software Foundation; either version 2, or (at your option)
  13. ;; any later version.
  14.  
  15. ;; GNU Emacs is distributed in the hope that it will be useful,
  16. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18. ;; GNU General Public License for more details.
  19.  
  20. ;; You should have received a copy of the GNU General Public License
  21. ;; along with GNU Emacs; see the file COPYING.  If not, write to
  22. ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  23.  
  24. ;;; Commentary:
  25.  
  26. ;;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  27. ;;; Special formatting conventions are used in this file!
  28. ;;;
  29. ;;; a backslash-newline is used at the beginning of a documentation string
  30. ;;; when that string should be stored in the file etc/DOCnnn, not in core.
  31. ;;;
  32. ;;; Such strings read into Lisp as numbers (during the pure-loading phase).
  33. ;;;
  34. ;;; But you must obey certain rules to make sure the string is understood
  35. ;;; and goes into etc/DOCnnn properly.  Otherwise, the string will not go
  36. ;;; anywhere!
  37. ;;;
  38. ;;; The doc string must appear in the standard place in a call to
  39. ;;; defun, autoload, defvar or defconst.  No Lisp macros are recognized.
  40. ;;; The open-paren starting the definition must appear in column 0.
  41. ;;;
  42. ;;; In defvar and defconst, there is an additional rule:
  43. ;;; The double-quote that starts the string must be on the same
  44. ;;; line as the defvar or defconst.
  45. ;;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  46.  
  47. ;;; **********************************************************************
  48. ;;; You should never need to write autoloads by hand and put them here.
  49. ;;;
  50. ;;; It is no longer necessary.  Instead use autoload.el to maintain them
  51. ;;; for you.  Just insert ";;;###autoload" before defuns or defmacros you
  52. ;;; want to be autoloaded, or other forms you want copied into loaddefs.el
  53. ;;; (defvars, key definitions, etc.).  For example, 
  54. ;;;    ;;;###autoload
  55. ;;;    (defun foobar () ....)
  56. ;;;    ;;;###autoload (define-key global-map "f" 'foobar)
  57. ;;;    ;;;###autoload
  58. ;;;    (defvar foobar-var nil "\
  59. ;;;    This is foobar-var's doc-string.")
  60. ;;;
  61. ;;; Then do M-x update-file-autoloads on the file to update loaddefs.el.
  62. ;;;
  63. ;;; You can also use M-x update-directory-autoloads to update the autoloads
  64. ;;; in loaddefs.el for all .el files in the lisp/ directory, or M-x
  65. ;;; update-autoloads-here to update the autoloads for each file that
  66. ;;; already has an autoload section in this file.
  67. ;;; **********************************************************************
  68.  
  69. ;;; Code:
  70.  
  71. ;;; This code was NOT generated by autoload.el.
  72.  
  73. (defconst mode-line-buffer-identification (purecopy '("Emacs: %12b"))
  74.   "Mode-line control for identifying the buffer being displayed.
  75. Its default value is \"Emacs: %12b\".  Major modes that edit things
  76. other than ordinary files may change this (e.g. Info, Dired,...)")
  77.  
  78. (make-variable-buffer-local 'mode-line-buffer-identification)
  79.  
  80. (defconst mode-line-process nil
  81.   "Mode-line control for displaying info on process status.
  82. Normally nil in most modes, since there is no process to display.")
  83.  
  84. (make-variable-buffer-local 'mode-line-process)
  85.  
  86. (defconst mode-line-modified (purecopy '("--%1*%1*-"))
  87.   "Mode-line control for displaying whether current buffer is modified.")
  88.  
  89. (make-variable-buffer-local 'mode-line-modified)
  90.  
  91. (setq-default mode-line-format
  92.   (list (purecopy "")
  93.    'mode-line-modified
  94.    'mode-line-buffer-identification
  95.    (purecopy "   ")
  96.    'global-mode-string
  97.    (purecopy "   %[(")
  98.    'mode-name 'minor-mode-alist "%n" 'mode-line-process
  99.    (purecopy ")%]--")
  100.    (purecopy '(line-number-mode "L%l--"))
  101.    (purecopy '(-3 . "%p"))
  102.    (purecopy "-%-")))
  103.  
  104. (defvar minor-mode-alist nil "\
  105. Alist saying how to show minor modes in the mode line.
  106. Each element looks like (VARIABLE STRING);
  107. STRING is included in the mode line iff VARIABLE's value is non-nil.
  108.  
  109. Actually, STRING need not be a string; any possible mode-line element
  110. is okay.  See `mode-line-format'.")
  111. (setq minor-mode-alist (mapcar 'purecopy
  112.                    '((abbrev-mode " Abbrev")
  113.                  (overwrite-mode overwrite-mode)
  114.                  (auto-fill-function " Fill")
  115.                  ;; not really a minor mode...
  116.                  (defining-kbd-macro " Def"))))
  117.  
  118. ;; These variables are used by autoloadable packages.
  119. ;; They are defined here so that they do not get overridden
  120. ;; by the loading of those packages.
  121.  
  122. ;; Names in directory that end in one of these
  123. ;; are ignored in completion,
  124. ;; making it more likely you will get a unique match.
  125. (setq completion-ignored-extensions
  126.       (if (eq system-type 'vax-vms)
  127.       '(".obj" ".elc" ".exe" ".bin" ".lbin" ".sbin"
  128.         ".dvi" ".toc" ".log" ".aux"
  129.         ".lof" ".brn" ".rnt" ".mem" ".lni" ".lis"
  130.         ".olb" ".tlb" ".mlb" ".hlb" ".glo" ".idx" ".lot" ".fmt")
  131.     '(".o" ".elc" "~" ".bin" ".lbin" ".fasl"
  132.       ".dvi" ".toc" ".log" ".aux" ".a" ".ln"
  133.       ".lof" ".blg" ".bbl" ".glo" ".idx" ".lot" ".fmt")))
  134.  
  135. (make-variable-buffer-local 'indent-tabs-mode)
  136.  
  137. ;; This is here to avoid autoloading etags on M-TAB.
  138. ;; M-x visit-tags-table will autoload etags, which will redefine complete-tag.
  139. (defun complete-tag ()
  140.   "Perform tags completion on the text around point.
  141. Completes to the set of names listed in the current tags table.  
  142. The string to complete is chosen in the same way as the default
  143. for \\[find-tag] (which see)."
  144.   (interactive)
  145.   (error (substitute-command-keys
  146.       "No tags table loaded.  Try \\[visit-tags-table].")))
  147.  
  148. ;; Reduce total amount of space we must allocate during this function
  149. ;; that we will not need to keep permanently.
  150. (garbage-collect)
  151.  
  152. (define-key ctl-x-map "n" (make-sparse-keymap))
  153. (define-key ctl-x-map "r" (make-sparse-keymap))
  154.  
  155. ;These commands are defined in editfns.c
  156. ;but they are not assigned to keys there.
  157. (put 'narrow-to-region 'disabled t)
  158. (define-key ctl-x-map "nn" 'narrow-to-region)
  159. (define-key ctl-x-map "nw" 'widen)
  160. ;; (define-key ctl-x-map "n" 'narrow-to-region)
  161. ;; (define-key ctl-x-map "w" 'widen)
  162.  
  163. (define-key global-map "\C-j" 'newline-and-indent)
  164. (define-key global-map "\C-m" 'newline)
  165. (define-key global-map "\C-o" 'open-line)
  166. (define-key esc-map "\C-o" 'split-line)
  167. (define-key global-map "\C-q" 'quoted-insert)
  168. (define-key esc-map "^" 'delete-indentation)
  169. (define-key esc-map "\\" 'delete-horizontal-space)
  170. (define-key esc-map "m" 'back-to-indentation)
  171. (define-key ctl-x-map "\C-o" 'delete-blank-lines)
  172. (define-key esc-map " " 'just-one-space)
  173. (define-key esc-map "z" 'zap-to-char)
  174. (define-key esc-map "=" 'count-lines-region)
  175. (define-key ctl-x-map "=" 'what-cursor-position)
  176. ;; This key sequence might cause a certain amount of trouble with function
  177. ;; keys.  Namely, it means you can't bind ESC followed by a function key.
  178. ;; However, people might not mind that too terribly much.
  179. ;; So I will leave this alone for now.
  180. (define-key esc-map "\e" 'eval-expression)
  181. ;; Changed from C-x ESC so that function keys work following C-x.
  182. (define-key ctl-x-map "\e\e" 'repeat-complex-command)
  183. (define-key ctl-x-map "u" 'advertised-undo)
  184. ;; Many people are used to typing C-/ on X terminals and getting C-_.
  185. (define-key global-map [?\C-/] 'undo)
  186. (define-key global-map "\C-_" 'undo)
  187. (define-key esc-map "!" 'shell-command)
  188. (define-key esc-map "|" 'shell-command-on-region)
  189.  
  190. (define-key global-map "\C-u" 'universal-argument)
  191. (let ((i ?0))
  192.   (while (<= i ?9)
  193.     (define-key esc-map (char-to-string i) 'digit-argument)
  194.     (setq i (1+ i))))
  195. (define-key esc-map "-" 'negative-argument)
  196. ;; Define control-digits.
  197. (let ((i ?0))
  198.   (while (<= i ?9)
  199.     (define-key global-map (read (format "[?\\C-%c]" i)) 'digit-argument)
  200.     (setq i (1+ i))))
  201. (define-key global-map [?\C--] 'negative-argument)
  202. ;; Define control-meta-digits.
  203. (let ((i ?0))
  204.   (while (<= i ?9)
  205.     (define-key esc-map (read (format "[?\\C-%c]" i)) 'digit-argument)
  206.     (setq i (1+ i))))
  207. (define-key global-map [?\C-\M--] 'negative-argument)
  208.  
  209. (define-key global-map "\C-k" 'kill-line)
  210. (define-key global-map "\C-w" 'kill-region)
  211. (define-key esc-map "w" 'kill-ring-save)
  212. (define-key esc-map "\C-w" 'append-next-kill)
  213. (define-key global-map "\C-y" 'yank)
  214. (define-key esc-map "y" 'yank-pop)
  215.  
  216. ;; (define-key ctl-x-map "a" 'append-to-buffer)
  217.  
  218. (define-key global-map "\C-@" 'set-mark-command)
  219. ;; Many people are used to typing C-SPC and getting C-@.
  220. (define-key global-map [?\C-\ ] 'set-mark-command)
  221. (define-key ctl-x-map "\C-x" 'exchange-point-and-mark)
  222.  
  223. (define-key global-map "\C-n" 'next-line)
  224. (define-key global-map "\C-p" 'previous-line)
  225. (define-key ctl-x-map "\C-n" 'set-goal-column)
  226.  
  227. ;;(defun function-key-error ()
  228. ;;  (interactive)
  229. ;;  (error "That function key is not bound to anything."))
  230.  
  231. ;; Apparently some terminals have a labeled help key.
  232. (define-key function-key-map [help] "\C-h")
  233. (define-key global-map [menu] 'execute-extended-command)
  234. (define-key global-map [find] 'search-forward)
  235.  
  236. ;; natural bindings for terminal keycaps --- defined in X keysym order
  237. (define-key global-map [home]        'beginning-of-buffer)
  238. (define-key global-map [left]        'backward-char)
  239. (define-key global-map [up]        'previous-line)
  240. (define-key global-map [right]        'forward-char)
  241. (define-key global-map [down]        'next-line)
  242. (define-key global-map [prior]        'scroll-down)
  243. (define-key global-map [next]        'scroll-up)
  244. (define-key global-map [M-next]        'scroll-other-window)
  245. (define-key global-map [end]        'end-of-buffer)
  246. (define-key global-map [begin]        'beginning-of-buffer)
  247. ;; (define-key global-map [select]        'function-key-error)
  248. ;; (define-key global-map [print]        'function-key-error)
  249. (define-key global-map [execute]    'execute-extended-command)
  250. (define-key global-map [insert]        'overwrite-mode)
  251. (define-key global-map [undo]        'undo)
  252. (define-key global-map [redo]        'repeat-complex-command)
  253. ;; (define-key global-map [clearline]    'function-key-error)
  254. (define-key global-map [insertline]    'open-line)
  255. (define-key global-map [deleteline]    'kill-line)
  256. ;; (define-key global-map [insertchar]    'function-key-error)
  257. (define-key global-map [deletechar]    'delete-char)
  258. ;; (define-key global-map [backtab]    'function-key-error)
  259. ;; (define-key global-map [f1]        'function-key-error)
  260. ;; (define-key global-map [f2]        'function-key-error)
  261. ;; (define-key global-map [f3]        'function-key-error)
  262. ;; (define-key global-map [f4]        'function-key-error)
  263. ;; (define-key global-map [f5]        'function-key-error)
  264. ;; (define-key global-map [f6]        'function-key-error)
  265. ;; (define-key global-map [f7]        'function-key-error)
  266. ;; (define-key global-map [f8]        'function-key-error)
  267. ;; (define-key global-map [f9]        'function-key-error)
  268. ;; (define-key global-map [f10]        'function-key-error)
  269. ;; (define-key global-map [f11]        'function-key-error)
  270. ;; (define-key global-map [f12]        'function-key-error)
  271. ;; (define-key global-map [f13]        'function-key-error)
  272. ;; (define-key global-map [f14]        'function-key-error)
  273. ;; (define-key global-map [f15]        'function-key-error)
  274. ;; (define-key global-map [f16]        'function-key-error)
  275. ;; (define-key global-map [f17]        'function-key-error)
  276. ;; (define-key global-map [f18]        'function-key-error)
  277. ;; (define-key global-map [f19]        'function-key-error)
  278. ;; (define-key global-map [f20]        'function-key-error)
  279. ;; (define-key global-map [f21]        'function-key-error)
  280. ;; (define-key global-map [f22]        'function-key-error)
  281. ;; (define-key global-map [f23]        'function-key-error)
  282. ;; (define-key global-map [f24]        'function-key-error)
  283. ;; (define-key global-map [f25]        'function-key-error)
  284. ;; (define-key global-map [f26]        'function-key-error)
  285. ;; (define-key global-map [f27]        'function-key-error)
  286. ;; (define-key global-map [f28]        'function-key-error)
  287. ;; (define-key global-map [f29]        'function-key-error)
  288. ;; (define-key global-map [f30]        'function-key-error)
  289. ;; (define-key global-map [f31]        'function-key-error)
  290. ;; (define-key global-map [f32]        'function-key-error)
  291. ;; (define-key global-map [f33]        'function-key-error)
  292. ;; (define-key global-map [f34]        'function-key-error)
  293. ;; (define-key global-map [f35]        'function-key-error)
  294. ;; (define-key global-map [kp-backtab]    'function-key-error)
  295. ;; (define-key global-map [kp-space]    'function-key-error)
  296. ;; (define-key global-map [kp-tab]        'function-key-error)
  297. ;; (define-key global-map [kp-enter]    'function-key-error)
  298. ;; (define-key global-map [kp-f1]        'function-key-error)
  299. ;; (define-key global-map [kp-f2]        'function-key-error)
  300. ;; (define-key global-map [kp-f3]        'function-key-error)
  301. ;; (define-key global-map [kp-f4]        'function-key-error)
  302. ;; (define-key global-map [kp-multiply]    'function-key-error)
  303. ;; (define-key global-map [kp-add]        'function-key-error)
  304. ;; (define-key global-map [kp-separator]    'function-key-error)
  305. ;; (define-key global-map [kp-subtract]    'function-key-error)
  306. ;; (define-key global-map [kp-decimal]    'function-key-error)
  307. ;; (define-key global-map [kp-divide]    'function-key-error)
  308. ;; (define-key global-map [kp-0]        'function-key-error)
  309. ;; (define-key global-map [kp-1]        'function-key-error)
  310. ;; (define-key global-map [kp-2]        'function-key-error)
  311. ;; (define-key global-map [kp-3]        'function-key-error)
  312. ;; (define-key global-map [kp-4]        'function-key-error)
  313. ;; (define-key global-map [kp-5]        'recenter)
  314. ;; (define-key global-map [kp-6]        'function-key-error)
  315. ;; (define-key global-map [kp-7]        'function-key-error)
  316. ;; (define-key global-map [kp-8]        'function-key-error)
  317. ;; (define-key global-map [kp-9]        'function-key-error)
  318. ;; (define-key global-map [kp-equal]    'function-key-error)
  319.  
  320. (define-key global-map "\C-t" 'transpose-chars)
  321. (define-key esc-map "t" 'transpose-words)
  322. (define-key esc-map "\C-t" 'transpose-sexps)
  323. (define-key ctl-x-map "\C-t" 'transpose-lines)
  324.  
  325. (define-key esc-map ";" 'indent-for-comment)
  326. (define-key esc-map "j" 'indent-new-comment-line)
  327. (define-key esc-map "\C-j" 'indent-new-comment-line)
  328. (define-key ctl-x-map ";" 'set-comment-column)
  329. (define-key ctl-x-map "f" 'set-fill-column)
  330. (define-key ctl-x-map "$" 'set-selective-display)
  331.  
  332. (define-key esc-map "@" 'mark-word)
  333. (define-key esc-map "f" 'forward-word)
  334. (define-key esc-map "b" 'backward-word)
  335. (define-key esc-map "d" 'kill-word)
  336. (define-key esc-map "\177" 'backward-kill-word)
  337.  
  338. (define-key esc-map "<" 'beginning-of-buffer)
  339. (define-key esc-map ">" 'end-of-buffer)
  340. (define-key ctl-x-map "h" 'mark-whole-buffer)
  341. (define-key esc-map "\\" 'delete-horizontal-space)
  342.  
  343. (defalias 'mode-specific-command-prefix (make-sparse-keymap))
  344. (defconst mode-specific-map (symbol-function 'mode-specific-command-prefix)
  345.   "Keymap for characters following C-c.")
  346. (define-key global-map "\C-c" 'mode-specific-command-prefix)
  347.  
  348. (global-set-key [M-right]  'forward-word)
  349. (global-set-key [M-left]   'backward-word)
  350.  
  351. (define-key esc-map "\C-f" 'forward-sexp)
  352. (define-key esc-map "\C-b" 'backward-sexp)
  353. (define-key esc-map "\C-u" 'backward-up-list)
  354. (define-key esc-map "\C-@" 'mark-sexp)
  355. (define-key esc-map [?\C-\ ] 'mark-sexp)
  356. (define-key esc-map "\C-d" 'down-list)
  357. (define-key esc-map "\C-k" 'kill-sexp)
  358. (define-key esc-map "\C-n" 'forward-list)
  359. (define-key esc-map "\C-p" 'backward-list)
  360. (define-key esc-map "\C-a" 'beginning-of-defun)
  361. (define-key esc-map "\C-e" 'end-of-defun)
  362. (define-key esc-map "\C-h" 'mark-defun)
  363. (define-key esc-map "(" 'insert-parentheses)
  364. (define-key esc-map ")" 'move-past-close-and-reindent)
  365. (define-key esc-map "\t" 'lisp-complete-symbol)
  366.  
  367. (define-key ctl-x-map "\C-e" 'eval-last-sexp)
  368.  
  369. (define-key ctl-x-map "r\C-@" 'point-to-register)
  370. (define-key ctl-x-map [?r ?\C-\ ] 'point-to-register)
  371. (define-key ctl-x-map "r " 'point-to-register)
  372. (define-key ctl-x-map "rj" 'jump-to-register)
  373. (define-key ctl-x-map "rs" 'copy-to-register)
  374. (define-key ctl-x-map "rx" 'copy-to-register)
  375. (define-key ctl-x-map "ri" 'insert-register)
  376. (define-key ctl-x-map "rg" 'insert-register)
  377. (define-key ctl-x-map "rr" 'copy-rectangle-to-register)
  378. (define-key ctl-x-map "rc" 'clear-rectangle)
  379. (define-key ctl-x-map "rk" 'kill-rectangle)
  380. (define-key ctl-x-map "ry" 'yank-rectangle)
  381. (define-key ctl-x-map "ro" 'open-rectangle)
  382. (define-key ctl-x-map "rt" 'string-rectangle)
  383. (define-key ctl-x-map "rw" 'window-configuration-to-register)
  384. (define-key ctl-x-map "rf" 'frame-configuration-to-register)
  385.  
  386. (define-key ctl-x-map "/" 'point-to-register)
  387. (define-key ctl-x-map "j" 'jump-to-register)
  388. (define-key ctl-x-map "x" 'copy-to-register)
  389. (define-key ctl-x-map "g" 'insert-register)
  390. ;; (define-key ctl-x-map "r" 'copy-rectangle-to-register)
  391.  
  392. (define-key esc-map "q" 'fill-paragraph)
  393. ;; (define-key esc-map "g" 'fill-region)
  394. (define-key ctl-x-map "." 'set-fill-prefix)
  395.  
  396. (define-key esc-map "{" 'backward-paragraph)
  397. (define-key esc-map "}" 'forward-paragraph)
  398. (define-key esc-map "h" 'mark-paragraph)
  399. (define-key esc-map "a" 'backward-sentence)
  400. (define-key esc-map "e" 'forward-sentence)
  401. (define-key esc-map "k" 'kill-sentence)
  402. (define-key ctl-x-map "\177" 'backward-kill-sentence)
  403.  
  404. (define-key ctl-x-map "[" 'backward-page)
  405. (define-key ctl-x-map "]" 'forward-page)
  406. (define-key ctl-x-map "\C-p" 'mark-page)
  407. (define-key ctl-x-map "l" 'count-lines-page)
  408. (define-key ctl-x-map "np" 'narrow-to-page)
  409. ;; (define-key ctl-x-map "p" 'narrow-to-page)
  410.  
  411. (define-key ctl-x-map "al" 'add-mode-abbrev)
  412. (define-key ctl-x-map "a\C-a" 'add-mode-abbrev)
  413. (define-key ctl-x-map "ag" 'add-global-abbrev)
  414. (define-key ctl-x-map "a+" 'add-mode-abbrev)
  415. (define-key ctl-x-map "aig" 'inverse-add-global-abbrev)
  416. (define-key ctl-x-map "ail" 'inverse-add-mode-abbrev)
  417. ;; (define-key ctl-x-map "a\C-h" 'inverse-add-global-abbrev)
  418. (define-key ctl-x-map "a-" 'inverse-add-global-abbrev)
  419. (define-key ctl-x-map "ae" 'expand-abbrev)
  420. (define-key ctl-x-map "a'" 'expand-abbrev)
  421. ;; (define-key ctl-x-map "\C-a" 'add-mode-abbrev)
  422. ;; (define-key ctl-x-map "\+" 'add-global-abbrev)
  423. ;; (define-key ctl-x-map "\C-h" 'inverse-add-mode-abbrev)
  424. ;; (define-key ctl-x-map "\-" 'inverse-add-global-abbrev)
  425. (define-key esc-map "'" 'abbrev-prefix-mark)
  426. (define-key ctl-x-map "'" 'expand-abbrev)
  427.  
  428.  
  429. ;;; Generated autoloads follow (made by autoload.el).
  430.  
  431. ;;; To sort them, execute the following after narrowing
  432. ;;; to a region starting just after the following formfeed (control-l)
  433. ;;; and ending just after the last formfeed in the file.
  434.  
  435. ;;;(sort-regexp-fields nil "\n*.*\n.*from \\(.*\\)[^ ]* " "\\1"
  436. ;;;            (point-min) (point-max))
  437.  
  438. ;;;### (autoloads (change-log-mode add-change-log-entry-other-window add-change-log-entry find-change-log prompt-for-change-log-name) "add-log" "add-log.el" (11496 28641))
  439. ;;; Generated autoloads from add-log.el
  440.  
  441. (autoload (quote prompt-for-change-log-name) "add-log" "\
  442. Prompt for a change log name." nil nil)
  443.  
  444. (autoload (quote find-change-log) "add-log" "\
  445. Find a change log file for \\[add-change-log-entry] and return the name.
  446. Optional arg FILE-NAME is a name to try first.
  447. If FILE-NAME is nil, use the value of `change-log-default-name' if non-nil.
  448. Failing that, use \"ChangeLog\" in the current directory.
  449. If the file does not exist in the named directory, successive parent
  450. directories are tried.
  451.  
  452. Once a file is found, `change-log-default-name' is set locally in the
  453. current buffer to the complete file name." nil nil)
  454.  
  455. (autoload (quote add-change-log-entry) "add-log" "\
  456. Find change log file and add an entry for today.
  457. Optional arg (interactive prefix) non-nil means prompt for user name and site.
  458. Second arg is file name of change log.  If nil, uses `change-log-default-name'.
  459. Third arg OTHER-WINDOW non-nil means visit in other window.
  460. Fourth arg NEW-ENTRY non-nil means always create a new entry at the front;
  461. never append to an existing entry." t nil)
  462.  
  463. (autoload (quote add-change-log-entry-other-window) "add-log" "\
  464. Find change log file in other window and add an entry for today.
  465. Optional arg (interactive prefix) non-nil means prompt for user name and site.
  466. Second arg is file name of change log.  If nil, uses `change-log-default-name'." t nil)
  467. (define-key ctl-x-4-map "a" 'add-change-log-entry-other-window)
  468.  
  469. (autoload (quote change-log-mode) "add-log" "\
  470. Major mode for editing change logs; like Indented Text Mode.
  471. Prevents numeric backups and sets `left-margin' to 8 and `fill-column' to 74.
  472. New log entries are usually made with \\[add-change-log-entry] or \\[add-change-log-entry-other-window].
  473. Each entry behaves as a paragraph, and the entries for one day as a page.
  474. Runs `change-log-mode-hook'." t nil)
  475.  
  476. ;;;***
  477.  
  478. ;;;### (autoloads (ad-start-advice defadvice ad-add-advice) "advice" "advice.el" (11335 1783))
  479. ;;; Generated autoloads from advice.el
  480.  
  481. (defvar ad-start-advice-on-load t "\
  482. *Non-NIL will start advice magic when this file gets loaded.
  483. Also see function `ad-start-advice'.")
  484.  
  485. (defvar ad-activate-on-definition nil "\
  486. *Non-NIL means automatic advice activation at function definition.
  487. Set this variable to t if you want to enable forward advice (which is
  488. automatic advice activation of a previously undefined function at the
  489. point the function gets defined/loaded/autoloaded). The value of this
  490. variable takes effect only during the execution of `ad-start-advice'. 
  491. If non-NIL it will enable definition hooks regardless of the value
  492. of `ad-enable-definition-hooks'.")
  493.  
  494. (defvar ad-redefinition-action (quote warn) "\
  495. *Defines what to do with redefinitions during de/activation.
  496. Redefinition occurs if a previously activated function that already has an
  497. original definition associated with it gets redefined and then de/activated.
  498. In such a case we can either accept the current definition as the new
  499. original definition, discard the current definition and replace it with the
  500. old original, or keep it and raise an error. The values `accept', `discard',
  501. `error' or `warn' govern what will be done. `warn' is just like `accept' but
  502. it additionally prints a warning message. All other values will be
  503. interpreted as `error'.")
  504.  
  505. (defvar ad-definition-hooks nil "\
  506. *List of hooks to be run after a function definition.
  507. The variable `ad-defined-function' will be bound to the name of
  508. the currently defined function when the hook function is run.")
  509.  
  510. (defvar ad-enable-definition-hooks nil "\
  511. *Non-NIL will enable hooks to be run on function definition.
  512. Setting this variable is a noop unless the value of
  513. `ad-activate-on-definition' (which see) is NIL.")
  514.  
  515. (defvar ad-use-jwz-byte-compiler (fboundp (quote eval-when-compile)) "\
  516. *Non-NIL means Jamie Zawinski's v19 byte-compiler will be used.
  517. If you use a v18 Emacs and don't use jwz's optimizing byte-compiler (the
  518. normal case) then this variable should be NIL, because otherwise
  519. enabling definition hooks (e.g., for forward advice) will redefine the 
  520. `byte-code' subr which will lead to some performance degradation for
  521. byte-compiled code.")
  522.  
  523. (autoload (quote ad-add-advice) "advice" "\
  524. Adds a piece of ADVICE to FUNCTION's list of advices in CLASS.
  525. If FUNCTION already has one or more pieces of advice of the specified
  526. CLASS then POSITION determines where the new piece will go. The value
  527. of POSITION can either be `first', `last' or a number where 0 corresponds
  528. to `first'. Numbers outside the range will be mapped to the closest
  529. extreme position. If there was already a piece of ADVICE with the same
  530. name, then the position argument will be ignored and the old advice
  531. will be overwritten with the new one.
  532.     If the FUNCTION was not advised already, then its advice info will be 
  533. initialized. Redefining a piece of advice whose name is part of the cache-id
  534. will clear the cache." nil nil)
  535.  
  536. (autoload (quote defadvice) "advice" "\
  537. Defines a piece of advice for FUNCTION (a symbol).
  538.  
  539.   (defadvice <function> (<class> <name> [<position>] [<arglist>] {<flags>}*)
  540.     [ [<documentation-string>] [<interactive-form>] ]
  541.     {<body-form>}* )
  542.  
  543. <function> ::= name of the function to be advised
  544. <class> ::= before | around | after | activation | deactivation
  545. <name> ::= non-NIL symbol that names this piece of advice
  546. <position> ::= first | last | <number> (optional, defaults to `first',
  547.     see also `ad-add-advice')
  548. <arglist> ::= an optional argument list to be used for the advised function
  549.     instead of the argument list of the original. The first one found in
  550.     before/around/after advices will be used.
  551. <flags> ::= protect | disable | activate | compile | preactivate
  552.     All flags can be specified with unambiguous initial substrings.
  553. <documentation-string> ::= optional documentation for this piece of advice
  554. <interactive-form> ::= optional interactive form to be used for the advised
  555.     function. The first one found in before/around/after advices will be used.
  556. <body-form> ::= any s-expression
  557.  
  558. Semantics of the various flags:
  559. `protect': The piece of advice will be protected against non-local exits in
  560. any code that precedes it. If any around advice of a function is protected
  561. then automatically all around advices will be protected (the complete onion).
  562.  
  563. `activate': All advice of FUNCTION will be activated immediately if
  564. FUNCTION has been properly defined prior to the defadvice.
  565.  
  566. `compile': In conjunction with `activate' specifies that the resulting
  567. advised function should be compiled.
  568.  
  569. `disable': The defined advice will be disabled, hence it will not be used 
  570. during activation until somebody enables it.
  571.  
  572. `preactivate': Preactivates the advised FUNCTION at macro expansion/compile
  573. time. This generates a compiled advised definition according to the current
  574. advice state that will be used during activation if appropriate. Only use
  575. this if the defadvice gets actually compiled (with a v18 byte-compiler put
  576. the defadvice into the body of a defun).
  577.  
  578. Look at the file advice.el for comprehensive documentation." nil (quote macro))
  579.  
  580. (autoload (quote ad-start-advice) "advice" "\
  581. Redefines some primitives to start the advice magic.
  582. If `ad-activate-on-definition' is t then advice information will
  583. automatically get activated whenever an advised function gets defined or
  584. redefined.  This will enable goodies such as forward advice and
  585. automatically enable function definition hooks. If its value is nil but
  586. the value of `ad-enable-definition-hooks' is t then definition hooks
  587. will be enabled without having automatic advice activation, otherwise
  588. function definition hooks will be disabled too. If definition hooks are
  589. enabled then functions stored in `ad-definition-hooks' are run whenever
  590. a function gets defined or redefined." t nil)
  591.  
  592. ;;;***
  593.  
  594. ;;;### (autoloads (ange-ftp-hook-function) "ange-ftp" "ange-ftp.el" (11365 55979))
  595. ;;; Generated autoloads from ange-ftp.el
  596.  
  597. (autoload (quote ange-ftp-hook-function) "ange-ftp" nil nil nil)
  598.  
  599. (or (assoc "^/[^/:]*[^/:]:" file-name-handler-alist) (setq file-name-handler-alist (cons (quote ("^/[^/:]*[^/:]:" . ange-ftp-hook-function)) file-name-handler-alist)))
  600.  
  601. (or (assoc "^/[^/:]*\\'" file-name-handler-alist) (setq file-name-handler-alist (cons (quote ("^/[^/:]*\\'" . ange-ftp-completion-hook-function)) file-name-handler-alist)))
  602.  
  603. ;;;***
  604.  
  605. ;;;### (autoloads (appt-make-list) "appt" "appt.el" (10941 42374))
  606. ;;; Generated autoloads from appt.el
  607.  
  608. (defvar appt-issue-message t "\
  609. *Non-nil means check for appointments in the diary buffer.
  610. To be detected, the diary entry must have the time
  611. as the first thing on a line.")
  612.  
  613. (defvar appt-message-warning-time 10 "\
  614. *Time in minutes before an appointment that the warning begins.")
  615.  
  616. (defvar appt-audible t "\
  617. *Non-nil means beep to indicate appointment.")
  618.  
  619. (defvar appt-visible t "\
  620. *Non-nil means display appointment message in echo area.")
  621.  
  622. (defvar appt-display-mode-line t "\
  623. *Non-nil means display minutes to appointment and time on the mode line.")
  624.  
  625. (defvar appt-msg-window t "\
  626. *Non-nil means display appointment message in another window.")
  627.  
  628. (defvar appt-display-duration 5 "\
  629. *The number of seconds an appointment message is displayed.")
  630.  
  631. (defvar appt-display-diary t "\
  632. *Non-nil means to display the next days diary on the screen. 
  633. This will occur at midnight when the appointment list is updated.")
  634.  
  635. (autoload (quote appt-make-list) "appt" nil nil nil)
  636.  
  637. ;;;***
  638.  
  639. ;;;### (autoloads (super-apropos apropos) "apropos" "apropos.el" (11283 60450))
  640. ;;; Generated autoloads from apropos.el
  641.  
  642. (autoload (quote apropos) "apropos" "\
  643. Show all symbols whose names contain matches for REGEXP.
  644. If optional argument DO-ALL is non-nil, does more (time-consuming) work such as
  645. showing key bindings.  Optional argument PRED is called with each symbol, and
  646. if it returns nil, the symbol is not shown.
  647.  
  648. Returns list of symbols and documentation found." t nil)
  649.  
  650. (autoload (quote super-apropos) "apropos" "\
  651. Show symbols whose names/documentation contain matches for REGEXP.
  652. If optional argument DO-ALL is non-nil, does more (time-consuming) work such as
  653. showing key bindings and documentation that is not stored in the documentation
  654. file.
  655.  
  656. Returns list of symbols and documentation found." t nil)
  657.  
  658. ;;;***
  659.  
  660. ;;;### (autoloads (asm-mode) "asm-mode" "asm-mode.el" (11240 17420))
  661. ;;; Generated autoloads from asm-mode.el
  662.  
  663. (autoload (quote asm-mode) "asm-mode" "\
  664. Major mode for editing typical assembler code.
  665. Features a private abbrev table and the following bindings:
  666.  
  667. \\[asm-colon]    outdent a preceding label, tab to next tab stop.
  668. \\[tab-to-tab-stop]    tab to next tab stop.
  669. \\[asm-newline]    newline, then tab to next tab stop.
  670. \\[asm-comment]    smart placement of assembler comments.
  671.  
  672. The character used for making comments is set by the variable
  673. `asm-comment-char' (which defaults to `?;').
  674.  
  675. Alternatively, you may set this variable in `asm-set-comment-hook', which is
  676. called near the beginning of mode initialization.
  677.  
  678. Turning on Asm mode runs the hook `asm-mode-hook' at the end of initialization.
  679.  
  680. Special commands:\\{asm-mode-map}
  681. " t nil)
  682.  
  683. ;;;***
  684.  
  685. ;;;### (autoloads (batch-update-autoloads update-directory-autoloads update-autoloads-here update-file-autoloads) "autoload" "autoload.el" (11341 50340))
  686. ;;; Generated autoloads from autoload.el
  687.  
  688. (autoload (quote update-file-autoloads) "autoload" "\
  689. Update the autoloads for FILE in `generated-autoload-file'
  690. (which FILE might bind in its local variables)." t nil)
  691.  
  692. (autoload (quote update-autoloads-here) "autoload" "\
  693. Update sections of the current buffer generated by \\[update-file-autoloads]." t nil)
  694.  
  695. (autoload (quote update-directory-autoloads) "autoload" "\
  696. Run \\[update-file-autoloads] on each .el file in DIR." t nil)
  697.  
  698. (autoload (quote batch-update-autoloads) "autoload" "\
  699. Update the autoloads for the files or directories on the command line.
  700. Runs \\[update-file-autoloads] on files and \\[update-directory-autoloads]
  701. on directories.  Must be used only with -batch, and kills Emacs on completion.
  702. Each file will be processed even if an error occurred previously.
  703. For example, invoke \"emacs -batch -f batch-update-autoloads *.el\"" nil nil)
  704.  
  705. ;;;***
  706.  
  707. ;;;### (autoloads (awk-mode) "awk-mode" "awk-mode.el" (11181 53242))
  708. ;;; Generated autoloads from awk-mode.el
  709.  
  710. (autoload (quote awk-mode) "awk-mode" "\
  711. Major mode for editing AWK code.
  712. This is much like C mode except for the syntax of comments.  It uses
  713. the same keymap as C mode and has the same variables for customizing
  714. indentation.  It has its own abbrev table and its own syntax table.
  715.  
  716. Turning on AWK mode calls the value of the variable `awk-mode-hook'
  717. with no args, if that value is non-nil." t nil)
  718.  
  719. ;;;***
  720.  
  721. ;;;### (autoloads (\`) "backquote" "backquote.el" (11285 49676))
  722. ;;; Generated autoloads from backquote.el
  723.  
  724. (autoload (quote \`) "backquote" "\
  725. (` FORM)  is a macro that expands to code to construct FORM.
  726. Note that this is very slow in interpreted code, but fast if you compile.
  727. FORM is one or more nested lists, which are `almost quoted':
  728. They are copied recursively, with non-lists used unchanged in the copy.
  729.  (` a b) == (list 'a 'b)  constructs a new list with two elements, `a' and `b'.
  730.  (` a (b c)) == (list 'a (list 'b 'c))  constructs two nested new lists.
  731.  
  732. However, certain special lists are not copied.  They specify substitution.
  733. Lists that look like (, EXP) are evaluated and the result is substituted.
  734.  (` a (, (+ x 5))) == (list 'a (+ x 5))
  735.  
  736. Elements of the form (,@ EXP) are evaluated and then all the elements
  737. of the result are substituted.  This result must be a list; it may
  738. be `nil'.
  739.  
  740. As an example, a simple macro `push' could be written:
  741.    (defmacro push (v l)
  742.         (` (setq (, l) (cons (,@ (list v l))))))
  743. or as
  744.    (defmacro push (v l)
  745.         (` (setq (, l) (cons (, v) (, l)))))
  746.  
  747. LIMITATIONS: \"dotted lists\" are not allowed in FORM.
  748. The ultimate cdr of each list scanned by ` must be `nil'.
  749. (This does not apply to constants inside expressions to be substituted.)
  750.  
  751. Substitution elements are not allowed as the cdr
  752. of a cons cell.  For example, (` (A . (, B))) does not work.
  753. Instead, write (` (A (,@ B))).
  754.  
  755. You cannot construct vectors, only lists.  Vectors are treated as
  756. constants.
  757.  
  758. BEWARE BEWARE BEWARE
  759. Inclusion of (,ATOM) rather than (, ATOM)
  760. or of (,@ATOM) rather than (,@ ATOM)
  761. will result in errors that will show up very late." nil (quote macro))
  762.  
  763. ;;;***
  764.  
  765. ;;;### (autoloads (bibtex-mode) "bibtex" "bibtex.el" (11287 29229))
  766. ;;; Generated autoloads from bibtex.el
  767.  
  768. (autoload (quote bibtex-mode) "bibtex" "\
  769. Major mode for editing bibtex files.
  770.  
  771. \\{bibtex-mode-map}
  772.  
  773. A command such as \\[bibtex-Book] will outline the fields for a BibTeX book entry.
  774.  
  775. The optional fields start with the string OPT, and thus ignored by BibTeX.
  776. The OPT string may be removed from a field with \\[bibtex-remove-OPT].
  777. \\[bibtex-kill-optional-field] kills the current optional field entirely.
  778. \\[bibtex-remove-double-quotes] removes the double-quotes around the text of
  779. the current field.  \\[bibtex-empty-field] replaces the text of the current
  780. field with the default \"\".
  781.  
  782. The command \\[bibtex-clean-entry] cleans the current entry, i.e. (i) removes
  783. double-quotes from entirely numerical fields, (ii) removes OPT from all
  784. non-empty optional fields, (iii) removes all empty optional fields, and (iv)
  785. checks that no non-optional fields are empty.
  786.  
  787. Use \\[bibtex-find-text] to position the dot at the end of the current field.
  788. Use \\[bibtex-next-field] to move to end of the next field.
  789.  
  790. The following may be of interest as well:
  791.  
  792.   Functions:
  793.     find-bibtex-duplicates
  794.     find-bibtex-entry-location
  795.     hide-bibtex-entry-bodies
  796.     sort-bibtex-entries
  797.     validate-bibtex-buffer
  798.  
  799.   Variables:
  800.     bibtex-clean-entry-zap-empty-opts
  801.     bibtex-entry-field-alist
  802.     bibtex-include-OPTannote
  803.     bibtex-include-OPTcrossref
  804.     bibtex-include-OPTkey
  805.     bibtex-maintain-sorted-entries
  806.     bibtex-mode-user-optional-fields
  807.  
  808. Fields:
  809.     address
  810.            Publisher's address
  811.     annote
  812.            Long annotation used for annotated bibliographies (begins sentence)
  813.     author
  814.            Name(s) of author(s), in BibTeX name format
  815.     booktitle
  816.            Book title when the thing being referenced isn't the whole book.
  817.            For book entries, the title field should be used instead.
  818.     chapter
  819.            Chapter number
  820.     crossref
  821.        The database key of the entry being cross referenced.
  822.     edition
  823.            Edition of a book (e.g., \"second\")
  824.     editor
  825.            Name(s) of editor(s), in BibTeX name format.
  826.            If there is also an author field, then the editor field should be
  827.            for the book or collection that the work appears in
  828.     howpublished
  829.             How something strange has been published (begins sentence)
  830.     institution
  831.            Sponsoring institution
  832.     journal
  833.            Journal name (macros are provided for many)
  834.     key
  835.            Alphabetizing and labeling key (needed when no author or editor)
  836.     month
  837.            Month (macros are provided)
  838.     note
  839.            To help the reader find a reference (begins sentence)
  840.     number
  841.            Number of a journal or technical report
  842.     organization
  843.            Organization (sponsoring a conference)
  844.     pages
  845.            Page number or numbers (use `--' to separate a range)
  846.     publisher
  847.            Publisher name
  848.     school
  849.            School name (for theses)
  850.     series
  851.            The name of a series or set of books.
  852.            An individual book will will also have it's own title
  853.     title
  854.            The title of the thing being referenced
  855.     type
  856.            Type of a technical report (e.g., \"Research Note\") to be used
  857.            instead of the default \"Technical Report\"
  858.     volume
  859.            Volume of a journal or multivolume work
  860.     year
  861.            Year---should contain only numerals
  862. ---------------------------------------------------------
  863. Entry to this mode calls the value of bibtex-mode-hook if that value is
  864. non-nil." t nil)
  865.  
  866. ;;;***
  867.  
  868. ;;;### (autoloads (blackbox) "blackbox" "blackbox.el" (11356 18211))
  869. ;;; Generated autoloads from blackbox.el
  870.  
  871. (autoload (quote blackbox) "blackbox" "\
  872. Play blackbox.  Optional prefix argument is the number of balls;
  873. the default is 4.
  874.  
  875. What is blackbox?
  876.  
  877. Blackbox is a game of hide and seek played on an 8 by 8 grid (the
  878. Blackbox).  Your opponent (Emacs, in this case) has hidden several
  879. balls (usually 4) within this box.  By shooting rays into the box and
  880. observing where they emerge it is possible to deduce the positions of
  881. the hidden balls.  The fewer rays you use to find the balls, the lower
  882. your score.
  883.  
  884. Overview of play:
  885.  
  886. \\<blackbox-mode-map>To play blackbox, type \\[blackbox].  An optional prefix argument
  887. specifies the number of balls to be hidden in the box; the default is
  888. four.
  889.  
  890. The cursor can be moved around the box with the standard cursor
  891. movement keys.
  892.  
  893. To shoot a ray, move the cursor to the edge of the box and press SPC.
  894. The result will be determined and the playfield updated.
  895.  
  896. You may place or remove balls in the box by moving the cursor into the
  897. box and pressing \\[bb-romp].
  898.  
  899. When you think the configuration of balls you have placed is correct,
  900. press \\[bb-done].  You will be informed whether you are correct or
  901. not, and be given your score.  Your score is the number of letters and
  902. numbers around the outside of the box plus five for each incorrectly
  903. placed ball.  If you placed any balls incorrectly, they will be
  904. indicated with `x', and their actual positions indicated with `o'.
  905.  
  906. Details:
  907.  
  908. There are three possible outcomes for each ray you send into the box:
  909.  
  910.     Detour: the ray is deflected and emerges somewhere other than
  911.         where you sent it in.  On the playfield, detours are
  912.         denoted by matching pairs of numbers -- one where the
  913.         ray went in, and the other where it came out.
  914.  
  915.     Reflection: the ray is reflected and emerges in the same place
  916.         it was sent in.  On the playfield, reflections are
  917.         denoted by the letter `R'.
  918.  
  919.     Hit:    the ray strikes a ball directly and is absorbed.  It does
  920.         not emerge from the box.  On the playfield, hits are
  921.         denoted by the letter `H'.
  922.  
  923. The rules for how balls deflect rays are simple and are best shown by
  924. example.
  925.  
  926. As a ray approaches a ball it is deflected ninety degrees.  Rays can
  927. be deflected multiple times.  In the diagrams below, the dashes
  928. represent empty box locations and the letter `O' represents a ball.
  929. The entrance and exit points of each ray are marked with numbers as
  930. described under \"Detour\" above.  Note that the entrance and exit
  931. points are always interchangeable.  `*' denotes the path taken by the
  932. ray.
  933.  
  934. Note carefully the relative positions of the ball and the ninety
  935. degree deflection it causes.
  936.  
  937.     1                                            
  938.   - * - - - - - -         - - - - - - - -         - - - - - - - -       
  939.   - * - - - - - -         - - - - - - - -         - - - - - - - -       
  940. 1 * * - - - - - -         - - - - - - - -         - O - - - - O -       
  941.   - - O - - - - -         - - O - - - - -         - - * * * * - -
  942.   - - - - - - - -         - - - * * * * * 2     3 * * * - - * - -
  943.   - - - - - - - -         - - - * - - - -         - - - O - * - -      
  944.   - - - - - - - -         - - - * - - - -         - - - - * * - -       
  945.   - - - - - - - -         - - - * - - - -         - - - - * - O -       
  946.                                 2                         3
  947.  
  948. As mentioned above, a reflection occurs when a ray emerges from the same point
  949. it was sent in.  This can happen in several ways:
  950.  
  951.                                                                            
  952.   - - - - - - - -         - - - - - - - -          - - - - - - - -
  953.   - - - - O - - -         - - O - O - - -          - - - - - - - -
  954. R * * * * - - - -         - - - * - - - -          O - - - - - - -
  955.   - - - - O - - -         - - - * - - - -        R - - - - - - - -
  956.   - - - - - - - -         - - - * - - - -          - - - - - - - -
  957.   - - - - - - - -         - - - * - - - -          - - - - - - - -
  958.   - - - - - - - -       R * * * * - - - -          - - - - - - - -
  959.   - - - - - - - -         - - - - O - - -          - - - - - - - -
  960.  
  961. In the first example, the ray is deflected downwards by the upper
  962. ball, then left by the lower ball, and finally retraces its path to
  963. its point of origin.  The second example is similar.  The third
  964. example is a bit anomalous but can be rationalized by realizing the
  965. ray never gets a chance to get into the box.  Alternatively, the ray
  966. can be thought of as being deflected downwards and immediately
  967. emerging from the box.
  968.  
  969. A hit occurs when a ray runs straight into a ball:
  970.  
  971.   - - - - - - - -         - - - - - - - -          - - - - - - - -
  972.   - - - - - - - -         - - - - - - - -          - - - - O - - -
  973.   - - - - - - - -         - - - - O - - -        H * * * * - - - -
  974.   - - - - - - - -       H * * * * O - - -          - - - * - - - -
  975.   - - - - - - - -         - - - - O - - -          - - - O - - - -
  976. H * * * O - - - -         - - - - - - - -          - - - - - - - -
  977.   - - - - - - - -         - - - - - - - -          - - - - - - - -
  978.   - - - - - - - -         - - - - - - - -          - - - - - - - -
  979.  
  980. Be sure to compare the second example of a hit with the first example of
  981. a reflection." t nil)
  982.  
  983. ;;;***
  984.  
  985.  
  986. ;;;### (autoloads (list-bookmarks bookmark-load bookmark-save bookmark-write bookmark-delete bookmark-insert bookmark-rename bookmark-locate bookmark-relocate bookmark-jump bookmark-set) "bookmark" "bookmark.el" (11468 39303))
  987. ;;; Generated autoloads from bookmark.el
  988.  
  989. (if (symbolp (key-binding "r")) nil (progn (define-key ctl-x-map "rb" (quote bookmark-jump)) (define-key ctl-x-map "rm" (quote bookmark-set)) (define-key ctl-x-map "rl" (quote list-bookmarks))))
  990.  
  991. (defvar bookmark-map nil "\
  992. Keymap containing bindings to bookmark functions.
  993. It is not bound to any key by default: to bind it
  994. so that you have a bookmark prefix, just use `global-set-key' and bind a
  995. key of your choice to `bookmark-map'.  All interactive bookmark
  996. functions have a binding in this keymap.")
  997.  
  998. (define-prefix-command (quote bookmark-map))
  999.  
  1000. (define-key bookmark-map "x" (quote bookmark-set))
  1001.  
  1002. (define-key bookmark-map "m" (quote bookmark-set))
  1003.  
  1004. (define-key bookmark-map "j" (quote bookmark-jump))
  1005.  
  1006. (define-key bookmark-map "g" (quote bookmark-jump))
  1007.  
  1008. (define-key bookmark-map "i" (quote bookmark-insert))
  1009.  
  1010. (define-key bookmark-map "e" (quote edit-bookmarks))
  1011.  
  1012. (define-key bookmark-map "f" (quote bookmark-locate))
  1013.  
  1014. (define-key bookmark-map "r" (quote bookmark-rename))
  1015.  
  1016. (define-key bookmark-map "d" (quote bookmark-delete))
  1017.  
  1018. (define-key bookmark-map "l" (quote bookmark-load))
  1019.  
  1020. (define-key bookmark-map "w" (quote bookmark-write))
  1021.  
  1022. (define-key bookmark-map "s" (quote bookmark-save))
  1023.  
  1024. (add-hook (quote kill-emacs-hook) (function (lambda nil (and (featurep (quote bookmark)) bookmark-alist (bookmark-time-to-save-p t) (bookmark-save)))))
  1025.  
  1026. (autoload (quote bookmark-set) "bookmark" "\
  1027. Set a bookmark named NAME inside a file.  
  1028. With prefix arg, will not overwrite a bookmark that has the same name
  1029. as NAME if such a bookmark already exists, but instead will \"push\"
  1030. the new bookmark onto the bookmark alist.  Thus the most recently set
  1031. bookmark with name NAME would be the one in effect at any given time,
  1032. but the others are still there, should you decide to delete the most
  1033. recent one.
  1034.  
  1035. To yank words from the text of the buffer and use them as part of the
  1036. bookmark name, type C-w while setting a bookmark.  Successive C-w's
  1037. yank successive words.
  1038.  
  1039. Typing C-v inserts the name of the current file being visited. Typing
  1040. C-u inserts the name of the last bookmark used in the buffer (as an
  1041. aid in using a single bookmark name to track your progress through a
  1042. large file).  If no bookmark was used, then C-u behaves like C-v and
  1043. inserts the name of the file being visited.
  1044.  
  1045. Use \\[bookmark-delete] to remove bookmarks (you give it a name,
  1046. and it removes only the first instance of a bookmark with that name from
  1047. the list of bookmarks.)" t nil)
  1048.  
  1049. (autoload (quote bookmark-jump) "bookmark" "\
  1050. Jump to bookmark BOOKMARK (a point in some file).  
  1051. You may have a problem using this function if the value of variable
  1052. `bookmark-alist' is nil.  If that happens, you need to load in some
  1053. bookmarks.  See help on function `bookmark-load' for more about
  1054. this.
  1055.  
  1056. If the file pointed to by BOOKMARK no longer exists, you will be asked
  1057. if you wish to give the bookmark a new location, and bookmark-jump
  1058. will then jump to the new location, as well as recording it in place
  1059. of the old one in the permanent bookmark record." t nil)
  1060.  
  1061. (autoload (quote bookmark-relocate) "bookmark" "\
  1062. Relocate BOOKMARK -- prompts for a filename, and makes an already
  1063. existing bookmark point to that file, instead of the one it used to
  1064. point at.  Useful when a file has been renamed after a bookmark was
  1065. set in it." t nil)
  1066.  
  1067. (autoload (quote bookmark-locate) "bookmark" "\
  1068. Insert the name of the file associated with BOOKMARK.
  1069. Optional second arg NO-INSERTION means merely return the filename as a
  1070. string." t nil)
  1071.  
  1072. (autoload (quote bookmark-rename) "bookmark" "\
  1073. Change the name of OLD-BOOKMARK to NEWNAME.  
  1074. If called from keyboard, prompts for OLD-BOOKMARK and NEWNAME.
  1075. If called from menubar, OLD-BOOKMARK is selected from a menu, and
  1076. prompts for NEWNAME. 
  1077. If called from Lisp, prompts for NEWNAME if only OLD-BOOKMARK was
  1078. passed as an argument.  If called with two strings, then no prompting
  1079. is done.  You must pass at least OLD-BOOKMARK when calling from Lisp.
  1080.  
  1081. While you are entering the new name, consecutive C-w's insert
  1082. consectutive words from the text of the buffer into the new bookmark
  1083. name, and C-v inserts the name of the file." t nil)
  1084.  
  1085. (autoload (quote bookmark-insert) "bookmark" "\
  1086. Insert the text of the file pointed to by bookmark BOOKMARK.  
  1087. You may have a problem using this function if the value of variable
  1088. `bookmark-alist' is nil.  If that happens, you need to load in some
  1089. bookmarks.  See help on function `bookmark-load' for more about
  1090. this." t nil)
  1091.  
  1092. (autoload (quote bookmark-delete) "bookmark" "\
  1093. Delete the bookmark named NAME from the bookmark list.  
  1094. Removes only the first instance of a bookmark with that name.  If
  1095. there are one or more other bookmarks with the same name, they will
  1096. not be deleted.  Defaults to the \"current\" bookmark (that is, the
  1097. one most recently used in this file, if any)." t nil)
  1098.  
  1099. (autoload (quote bookmark-write) "bookmark" "\
  1100. Write bookmarks to a file (for which the user will be prompted
  1101. interactively).  Don't use this in Lisp programs; use bookmark-save
  1102. instead." t nil)
  1103.  
  1104. (autoload (quote bookmark-save) "bookmark" "\
  1105. Save currently defined bookmarks.
  1106. Saves by default in the file defined by the variable
  1107. `bookmark-file'.  With a prefix arg, save it in file FILE.
  1108.  
  1109. If you are calling this from Lisp, the two arguments are PREFIX-ARG
  1110. and FILE, and if you just want it to write to the default file, then
  1111. pass no arguments.  Or pass in nil and FILE, and it will save in FILE
  1112. instead.  If you pass in one argument, and it is non-nil, then the
  1113. user will be interactively queried for a file to save in.
  1114.  
  1115. When you want to load in the bookmarks from a file, use
  1116. `bookmark-load', \\[bookmark-load].  That function will prompt you
  1117. for a file, defaulting to the file defined by variable
  1118. `bookmark-file'." t nil)
  1119.  
  1120. (autoload (quote bookmark-load) "bookmark" "\
  1121. Load bookmarks from FILE (which must be in bookmark format).
  1122. Appends loaded bookmarks to the front of the list of bookmarks.  If
  1123. optional second argument REVERT is non-nil, existing bookmarks are
  1124. destroyed.  Optional third arg NO-MSG means don't display any messages
  1125. while loading.
  1126.  
  1127. If you load a file that doesn't contain a proper bookmark alist, you
  1128. will corrupt Emacs's bookmark list.  Generally, you should only load
  1129. in files that were created with the bookmark functions in the first
  1130. place.  Your own personal bookmark file, `~/.emacs-bkmrks', is
  1131. maintained automatically by Emacs; you shouldn't need to load it
  1132. explicitly." t nil)
  1133.  
  1134. (defalias (quote edit-bookmarks) (quote list-bookmarks))
  1135.  
  1136. (autoload (quote list-bookmarks) "bookmark" "\
  1137. Display a list of existing bookmarks.
  1138. The list is displayed in a buffer named `*Bookmark List*'.
  1139. The leftmost column displays a D if the bookmark is flagged for
  1140. deletion, or > if it is flagged for displaying." t nil)
  1141. (autoload 'menu-bar-bookmark-map "bookmark" nil t 'keymap)
  1142.  
  1143. ;;;***
  1144.  
  1145. ;;;### (autoloads (batch-byte-compile display-call-tree byte-compile compile-defun byte-compile-file byte-recompile-directory) "bytecomp" "bytecomp.el" (11367 8231))
  1146. ;;; Generated autoloads from bytecomp.el
  1147.  
  1148. (autoload (quote byte-recompile-directory) "bytecomp" "\
  1149. Recompile every `.el' file in DIRECTORY that needs recompilation.
  1150. This is if a `.elc' file exists but is older than the `.el' file.
  1151. Files in subdirectories of DIRECTORY are processed also.
  1152.  
  1153. If the `.elc' file does not exist, normally the `.el' file is *not* compiled.
  1154. But a prefix argument (optional second arg) means ask user,
  1155. for each such `.el' file, whether to compile it.  Prefix argument 0 means
  1156. don't ask and compile the file anyway.
  1157.  
  1158. A nonzero prefix argument also means ask about each subdirectory." t nil)
  1159.  
  1160. (autoload (quote byte-compile-file) "bytecomp" "\
  1161. Compile a file of Lisp code named FILENAME into a file of byte code.
  1162. The output file's name is made by appending `c' to the end of FILENAME.
  1163. With prefix arg (noninteractively: 2nd arg), load the file after compiling." t nil)
  1164.  
  1165. (autoload (quote compile-defun) "bytecomp" "\
  1166. Compile and evaluate the current top-level form.
  1167. Print the result in the minibuffer.
  1168. With argument, insert value in current buffer after the form." t nil)
  1169.  
  1170. (autoload (quote byte-compile) "bytecomp" "\
  1171. If FORM is a symbol, byte-compile its function definition.
  1172. If FORM is a lambda or a macro, byte-compile it as a function." nil nil)
  1173.  
  1174. (autoload (quote display-call-tree) "bytecomp" "\
  1175. Display a call graph of a specified file.
  1176. This lists which functions have been called, what functions called
  1177. them, and what functions they call.  The list includes all functions
  1178. whose definitions have been compiled in this Emacs session, as well as
  1179. all functions called by those functions.
  1180.  
  1181. The call graph does not include macros, inline functions, or
  1182. primitives that the byte-code interpreter knows about directly (eq,
  1183. cons, etc.).
  1184.  
  1185. The call tree also lists those functions which are not known to be called
  1186. (that is, to which no calls have been compiled), and which cannot be
  1187. invoked interactively." t nil)
  1188.  
  1189. (autoload (quote batch-byte-compile) "bytecomp" "\
  1190. Run `byte-compile-file' on the files remaining on the command line.
  1191. Use this from the command line, with `-batch';
  1192. it won't work in an interactive Emacs.
  1193. Each file is processed even if an error occurred previously.
  1194. For example, invoke \"emacs -batch -f batch-byte-compile $emacs/ ~/*.el\"" nil nil)
  1195.  
  1196. ;;;***
  1197.  
  1198. ;;;### (autoloads (list-yahrzeit-dates calendar) "calendar" "calendar.el" (11494 46605))
  1199. ;;; Generated autoloads from calendar.el
  1200.  
  1201. (defvar calendar-week-start-day 0 "\
  1202. *The day of the week on which a week in the calendar begins.
  1203. 0 means Sunday (default), 1 means Monday, and so on.")
  1204.  
  1205. (defvar view-diary-entries-initially nil "\
  1206. *If t, the diary entries for the current date will be displayed on entry.
  1207. The diary is displayed in another window when the calendar is first displayed,
  1208. if the current date is visible.  The number of days of diary entries displayed
  1209. is governed by the variable `number-of-diary-entries'.")
  1210.  
  1211. (defvar number-of-diary-entries 1 "\
  1212. *Specifies how many days of diary entries are to be displayed initially.
  1213. This variable affects the diary display when the command M-x diary is used,
  1214. or if the value of the variable `view-diary-entries-initially' is t.  For
  1215. example, if the default value 1 is used, then only the current day's diary
  1216. entries will be displayed.  If the value 2 is used, then both the current
  1217. day's and the next day's entries will be displayed.  The value can also be
  1218. a vector such as [0 2 2 2 2 4 1]; this value will cause no diary entries to
  1219. be displayed on Sunday, the current date's and the next day's diary entries
  1220. to be displayed Monday through Thursday, Friday through Monday's entries to
  1221. be displayed on Friday, and only Saturday's entries to be displayed on
  1222. Saturday.  This variable does not affect the diary display with the `d'
  1223. command from the calendar; in that case, the prefix argument controls the
  1224. number of days of diary entries displayed.")
  1225.  
  1226. (defvar mark-diary-entries-in-calendar nil "\
  1227. *If t, dates with diary entries will be marked in the calendar window.
  1228. The marking symbol is specified by the variable `diary-entry-marker'.")
  1229.  
  1230. (defvar diary-entry-marker "+" "\
  1231. *The symbol used to mark dates that have diary entries.")
  1232.  
  1233. (defvar view-calendar-holidays-initially nil "\
  1234. *If t, holidays for current three month period will be displayed on entry.
  1235. The holidays are displayed in another window when the calendar is first
  1236. displayed.")
  1237.  
  1238. (defvar mark-holidays-in-calendar nil "\
  1239. *If t, dates of holidays will be marked in the calendar window.
  1240. The marking symbol is specified by the variable `calendar-holiday-marker'.")
  1241.  
  1242. (defvar calendar-holiday-marker "*" "\
  1243. *The symbol used to mark notable dates in the calendar.")
  1244.  
  1245. (defvar all-hebrew-calendar-holidays nil "\
  1246. *If nil, show only major holidays from the Hebrew calendar.
  1247.  
  1248. If nil, the only holidays from the Hebrew calendar shown will be those days of
  1249. such major interest as to appear on secular calendars.
  1250.  
  1251. If t, the holidays shown in the calendar will include all special days that
  1252. would be shown on a complete Hebrew calendar.")
  1253.  
  1254. (defvar all-christian-calendar-holidays nil "\
  1255. *If nil, show only major holidays from the Christian calendar.
  1256.  
  1257. If nil, the only holidays from the Christian calendar shown will be those days
  1258. of such major interest as to appear on secular calendars.
  1259.  
  1260. If t, the holidays shown in the calendar will include all special days that
  1261. would be shown on a complete Christian calendar.")
  1262.  
  1263. (defvar all-islamic-calendar-holidays nil "\
  1264. *If nil, show only major holidays from the Islamic calendar.
  1265.  
  1266. If nil, the only holidays from the Islamic calendar shown will be those days
  1267. of such major interest as to appear on secular calendars.
  1268.  
  1269. If t, the holidays shown in the calendar will include all special days that
  1270. would be shown on a complete Islamic calendar.")
  1271.  
  1272. (defvar calendar-load-hook nil "\
  1273. *List of functions to be called after the calendar is first loaded.
  1274. This is the place to add key bindings to calendar-mode-map.")
  1275.  
  1276. (defvar initial-calendar-window-hook nil "\
  1277. *List of functions to be called when the calendar window is first opened.
  1278. The functions invoked are called after the calendar window is opened, but
  1279. once opened is never called again.  Leaving the calendar with the `q' command
  1280. and reentering it will cause these functions to be called again.")
  1281.  
  1282. (defvar today-visible-calendar-hook nil "\
  1283. *List of functions called whenever the current date is visible.
  1284. This can be used, for example, to replace today's date with asterisks; a
  1285. function `calendar-star-date' is included for this purpose:
  1286.     (setq today-visible-calendar-hook 'calendar-star-date)
  1287. It could also be used to mark the current date with `='; a function is also
  1288. provided for this:
  1289.     (setq today-visible-calendar-hook 'calendar-mark-today)
  1290.  
  1291. The corresponding variable `today-invisible-calendar-hook' is the list of
  1292. functions called when the calendar function was called when the current
  1293. date is not visible in the window.
  1294.  
  1295. Other than the use of the provided functions, the changing of any
  1296. characters in the calendar buffer by the hooks may cause the failure of the
  1297. functions that move by days and weeks.")
  1298.  
  1299. (defvar today-invisible-calendar-hook nil "\
  1300. *List of functions called whenever the current date is not visible.
  1301.  
  1302. The corresponding variable `today-visible-calendar-hook' is the list of
  1303. functions called when the calendar function was called when the current
  1304. date is visible in the window.
  1305.  
  1306. Other than the use of the provided functions, the changing of any
  1307. characters in the calendar buffer by the hooks may cause the failure of the
  1308. functions that move by days and weeks.")
  1309.  
  1310. (defvar diary-file "~/diary" "\
  1311. *Name of the file in which one's personal diary of dates is kept.
  1312.  
  1313. The file's entries are lines in any of the forms
  1314.  
  1315.             MONTH/DAY
  1316.             MONTH/DAY/YEAR
  1317.             MONTHNAME DAY
  1318.             MONTHNAME DAY, YEAR
  1319.             DAYNAME
  1320.  
  1321. at the beginning of the line; the remainder of the line is the diary entry
  1322. string for that date.  MONTH and DAY are one or two digit numbers, YEAR is
  1323. a number and may be written in full or abbreviated to the final two digits.
  1324. If the date does not contain a year, it is generic and applies to any year.
  1325. DAYNAME entries apply to any date on which is on that day of the week.
  1326. MONTHNAME and DAYNAME can be spelled in full, abbreviated to three
  1327. characters (with or without a period), capitalized or not.  Any of DAY,
  1328. MONTH, or MONTHNAME, YEAR can be `*' which matches any day, month, or year,
  1329. respectively.
  1330.  
  1331. The European style (in which the day precedes the month) can be used
  1332. instead, if you execute `european-calendar' when in the calendar, or set
  1333. `european-calendar-style' to t in your .emacs file.  The European forms are
  1334.  
  1335.             DAY/MONTH
  1336.             DAY/MONTH/YEAR
  1337.             DAY MONTHNAME
  1338.             DAY MONTHNAME YEAR
  1339.             DAYNAME
  1340.  
  1341. To revert to the default American style from the European style, execute
  1342. `american-calendar' in the calendar.
  1343.  
  1344. A diary entry can be preceded by a diary-nonmarking-symbol (ordinarily `&')
  1345. to make that entry nonmarking--that is, it will not be marked on dates in
  1346. the calendar window but will appear in a diary window.
  1347.  
  1348. Multiline diary entries are made by indenting lines after the first with
  1349. either a TAB or one or more spaces.
  1350.  
  1351. Lines not in one the above formats are ignored.  Here are some sample diary
  1352. entries (in the default American style):
  1353.  
  1354.      12/22/1988 Twentieth wedding anniversary!!
  1355.      &1/1. Happy New Year!
  1356.      10/22 Ruth's birthday.
  1357.      21: Payday
  1358.      Tuesday--weekly meeting with grad students at 10am
  1359.               Supowit, Shen, Bitner, and Kapoor to attend.
  1360.      1/13/89 Friday the thirteenth!!
  1361.      &thu 4pm squash game with Lloyd.
  1362.      mar 16 Dad's birthday
  1363.      April 15, 1989 Income tax due.
  1364.      &* 15 time cards due.
  1365.  
  1366. If the first line of a diary entry consists only of the date or day name with
  1367. no trailing blanks or punctuation, then that line will not be displayed in the
  1368. diary window; only the continuation lines will be shown.  For example, the
  1369. single diary entry
  1370.  
  1371.      02/11/1989
  1372.       Bill Blattner visits Princeton today
  1373.       2pm Cognitive Studies Committee meeting
  1374.       2:30-5:30 Lizzie at Lawrenceville for `Group Initiative'
  1375.       4:00pm Jamie Tappenden
  1376.       7:30pm Dinner at George and Ed's for Alan Ryan
  1377.       7:30-10:00pm dance at Stewart Country Day School
  1378.  
  1379. will appear in the diary window without the date line at the beginning.  This
  1380. facility allows the diary window to look neater, but can cause confusion if
  1381. used with more than one day's entries displayed.
  1382.  
  1383. Diary entries can be based on Lisp sexps.  For example, the diary entry
  1384.  
  1385.       %%(diary-block 11 1 1990 11 10 1990) Vacation
  1386.  
  1387. causes the diary entry \"Vacation\" to appear from November 1 through November
  1388. 10, 1990.  Other functions available are `diary-float', `diary-anniversary',
  1389. `diary-cyclic', `diary-day-of-year', `diary-iso-date', `diary-french-date',
  1390. `diary-hebrew-date', `diary-islamic-date', `diary-mayan-date',
  1391. `diary-yahrzeit', `diary-sunrise-sunset', `diary-phases-of-moon',
  1392. `diary-parasha', `diary-omer', `diary-rosh-hodesh', and
  1393. `diary-sabbath-candles'.  See the documentation for the function
  1394. `list-sexp-diary-entries' for more details.
  1395.  
  1396. Diary entries based on the Hebrew and/or the Islamic calendar are also
  1397. possible, but because these are somewhat slow, they are ignored
  1398. unless you set the `nongregorian-diary-listing-hook' and the
  1399. `nongregorian-diary-marking-hook' appropriately.  See the documentation
  1400. for these functions for details.
  1401.  
  1402. Diary files can contain directives to include the contents of other files; for
  1403. details, see the documentation for the variable `list-diary-entries-hook'.")
  1404.  
  1405. (defvar diary-nonmarking-symbol "&" "\
  1406. *Symbol indicating that a diary entry is not to be marked in the calendar.")
  1407.  
  1408. (defvar hebrew-diary-entry-symbol "H" "\
  1409. *Symbol indicating a diary entry according to the Hebrew calendar.")
  1410.  
  1411. (defvar islamic-diary-entry-symbol "I" "\
  1412. *Symbol indicating a diary entry according to the Islamic calendar.")
  1413.  
  1414. (defvar diary-include-string "#include" "\
  1415. *The string indicating inclusion of another file of diary entries.
  1416. See the documentation for the function `include-other-diary-files'.")
  1417.  
  1418. (defvar sexp-diary-entry-symbol "%%" "\
  1419. *The string used to indicate a sexp diary entry in diary-file.
  1420. See the documentation for the function `list-sexp-diary-entries'.")
  1421.  
  1422. (defvar abbreviated-calendar-year t "\
  1423. *Interpret a two-digit year DD in a diary entry as either 19DD or 20DD.
  1424. For the Gregorian calendar; similarly for the Hebrew and Islamic calendars.
  1425. If this variable is nil, years must be written in full.")
  1426.  
  1427. (defvar european-calendar-style nil "\
  1428. *Use the European style of dates in the diary and in any displays.
  1429. If this variable is t, a date 1/2/1990 would be interpreted as February 1,
  1430. 1990.  The accepted European date styles are
  1431.  
  1432.             DAY/MONTH
  1433.             DAY/MONTH/YEAR
  1434.             DAY MONTHNAME
  1435.             DAY MONTHNAME YEAR
  1436.             DAYNAME
  1437.  
  1438. Names can be capitalized or not, written in full, or abbreviated to three
  1439. characters with or without a period.")
  1440.  
  1441. (defvar american-date-diary-pattern (quote ((month "/" day "[^/0-9]") (month "/" day "/" year "[^0-9]") (monthname " *" day "[^,0-9]") (monthname " *" day ", *" year "[^0-9]") (dayname "\\W"))) "\
  1442. *List of pseudo-patterns describing the American patterns of date used.
  1443. See the documentation of diary-date-forms for an explanation.")
  1444.  
  1445. (defvar european-date-diary-pattern (quote ((day "/" month "[^/0-9]") (day "/" month "/" year "[^0-9]") (backup day " *" monthname "\\W+\\<[^*0-9]") (day " *" monthname " *" year "[^0-9]") (dayname "\\W"))) "\
  1446. *List of pseudo-patterns describing the European patterns of date used.
  1447. See the documentation of diary-date-forms for an explanation.")
  1448.  
  1449. (defvar european-calendar-display-form (quote ((if dayname (concat dayname ", ")) day " " monthname " " year)) "\
  1450. *Pseudo-pattern governing the way a date appears in the European style.
  1451. See the documentation of calendar-date-display-form for an explanation.")
  1452.  
  1453. (defvar american-calendar-display-form (quote ((if dayname (concat dayname ", ")) monthname " " day ", " year)) "\
  1454. *Pseudo-pattern governing the way a date appears in the American style.
  1455. See the documentation of calendar-date-display-form for an explanation.")
  1456.  
  1457. (defvar print-diary-entries-hook (quote lpr-buffer) "\
  1458. *List of functions called after a temporary diary buffer is prepared.
  1459. The buffer shows only the diary entries currently visible in the diary
  1460. buffer.  The default just does the printing.  Other uses might include, for
  1461. example, rearranging the lines into order by day and time, saving the buffer
  1462. instead of deleting it, or changing the function used to do the printing.")
  1463.  
  1464. (defvar list-diary-entries-hook nil "\
  1465. *List of functions called after diary file is culled for relevant entries.
  1466. It is to be used for diary entries that are not found in the diary file.
  1467.  
  1468. A function `include-other-diary-files' is provided for use as the value of
  1469. this hook.  This function enables you to use shared diary files together
  1470. with your own.  The files included are specified in the diary-file by lines
  1471. of the form
  1472.  
  1473.         #include \"filename\"
  1474.  
  1475. This is recursive; that is, #include directives in files thus included are
  1476. obeyed.  You can change the \"#include\" to some other string by changing
  1477. the variable `diary-include-string'.  When you use `include-other-diary-files'
  1478. as part of the list-diary-entries-hook, you will probably also want to use the
  1479. function `mark-included-diary-files' as part of the mark-diary-entries-hook.
  1480.  
  1481. For example, you could use
  1482.  
  1483.      (setq list-diary-entries-hook
  1484.        '(include-other-diary-files sort-diary-entries))
  1485.      (setq diary-display-hook 'fancy-diary-display)
  1486.  
  1487. in your .emacs file to cause the fancy diary buffer to be displayed with
  1488. diary entries from various included files, each day's entries sorted into
  1489. lexicographic order.")
  1490.  
  1491. (defvar diary-hook nil "\
  1492. *List of functions called after the display of the diary.
  1493. Can be used for appointment notification.")
  1494.  
  1495. (defvar diary-display-hook nil "\
  1496. *List of functions that handle the display of the diary.
  1497. If nil (the default), `simple-diary-display' will be used.  Use `ignore' for no
  1498. diary display.
  1499.  
  1500. Ordinarily, this just displays the diary buffer (with holidays indicated in
  1501. the mode line), if there are any relevant entries.  At the time these
  1502. functions are called, the variable `diary-entries-list' is a list, in order
  1503. by date, of all relevant diary entries in the form of ((MONTH DAY YEAR)
  1504. STRING), where string is the diary entry for the given date.  This can be
  1505. used, for example, a different buffer for display (perhaps combined with
  1506. holidays), or produce hard copy output.
  1507.  
  1508. A function `fancy-diary-display' is provided as an alternative
  1509. choice for this hook; this function prepares a special noneditable diary
  1510. buffer with the relevant diary entries that has neat day-by-day arrangement
  1511. with headings.  The fancy diary buffer will show the holidays unless the
  1512. variable `holidays-in-diary-buffer' is set to nil.  Ordinarily, the fancy
  1513. diary buffer will not show days for which there are no diary entries, even
  1514. if that day is a holiday; if you want such days to be shown in the fancy
  1515. diary buffer, set the variable `diary-list-include-blanks' to t.")
  1516.  
  1517. (defvar nongregorian-diary-listing-hook nil "\
  1518. *List of functions called for listing diary file and included files.
  1519. As the files are processed for diary entries, these functions are used to cull
  1520. relevant entries.  You can use either or both of `list-hebrew-diary-entries'
  1521. and `list-islamic-diary-entries'.  The documentation for these functions
  1522. describes the style of such diary entries.")
  1523.  
  1524. (defvar mark-diary-entries-hook nil "\
  1525. *List of functions called after marking diary entries in the calendar.
  1526.  
  1527. A function `mark-included-diary-files' is also provided for use as the
  1528. mark-diary-entries-hook; it enables you to use shared diary files together
  1529. with your own.  The files included are specified in the diary-file by lines
  1530. of the form
  1531.         #include \"filename\"
  1532. This is recursive; that is, #include directives in files thus included are
  1533. obeyed.  You can change the \"#include\" to some other string by changing the
  1534. variable `diary-include-string'.  When you use `mark-included-diary-files' as
  1535. part of the mark-diary-entries-hook, you will probably also want to use the
  1536. function `include-other-diary-files' as part of the list-diary-entries-hook.")
  1537.  
  1538. (defvar nongregorian-diary-marking-hook nil "\
  1539. *List of functions called for marking diary file and included files.
  1540. As the files are processed for diary entries, these functions are used to cull
  1541. relevant entries.  You can use either or both of `mark-hebrew-diary-entries'
  1542. and `mark-islamic-diary-entries'.  The documentation for these functions
  1543. describes the style of such diary entries.")
  1544.  
  1545. (defvar diary-list-include-blanks nil "\
  1546. *If nil, do not include days with no diary entry in the list of diary entries.
  1547. Such days will then not be shown in the the fancy diary buffer, even if they
  1548. are holidays.")
  1549.  
  1550. (defvar holidays-in-diary-buffer t "\
  1551. *If t, the holidays will be indicated in the diary display.
  1552. The holidays will be given in the mode line of the diary buffer, or in the
  1553. fancy diary buffer next to the date.  This slows down the diary functions
  1554. somewhat; setting it to nil will make the diary display faster.")
  1555.  
  1556. (defvar general-holidays (quote ((holiday-fixed 1 1 "New Year's Day") (holiday-float 1 1 3 "Martin Luther King Day") (holiday-fixed 2 2 "Ground Hog Day") (holiday-fixed 2 14 "Valentine's Day") (holiday-float 2 1 3 "President's Day") (holiday-fixed 3 17 "St. Patrick's Day") (holiday-fixed 4 1 "April Fool's Day") (holiday-float 5 0 2 "Mother's Day") (holiday-float 5 1 -1 "Memorial Day") (holiday-fixed 6 14 "Flag Day") (holiday-float 6 0 3 "Father's Day") (holiday-fixed 7 4 "Independence Day") (holiday-float 9 1 1 "Labor Day") (holiday-float 10 1 2 "Columbus Day") (holiday-fixed 10 31 "Halloween") (holiday-fixed 11 11 "Veteran's Day") (holiday-float 11 4 4 "Thanksgiving"))) "\
  1557. *General holidays.  Default value is for the United States.
  1558. See the documentation for `calendar-holidays' for details.")
  1559.  
  1560. (defvar local-holidays nil "\
  1561. *Local holidays.
  1562. See the documentation for `calendar-holidays' for details.")
  1563.  
  1564. (defvar other-holidays nil "\
  1565. *User defined holidays.
  1566. See the documentation for `calendar-holidays' for details.")
  1567.  
  1568. (defvar hebrew-holidays-1 (quote ((holiday-rosh-hashanah-etc) (if all-hebrew-calendar-holidays (holiday-julian 11 (let* ((m displayed-month) (y displayed-year) (year)) (increment-calendar-month m y -1) (let ((year (extract-calendar-year (calendar-julian-from-absolute (calendar-absolute-from-gregorian (list m 1 y)))))) (if (zerop (% (1+ year) 4)) 22 21))) "\"Tal Umatar\" (evening)")))))
  1569.  
  1570. (defvar hebrew-holidays-2 (quote ((if all-hebrew-calendar-holidays (holiday-hanukkah) (holiday-hebrew 9 25 "Hanukkah")) (if all-hebrew-calendar-holidays (holiday-hebrew 10 (let ((h-year (extract-calendar-year (calendar-hebrew-from-absolute (calendar-absolute-from-gregorian (list displayed-month 28 displayed-year)))))) (if (= (% (calendar-absolute-from-hebrew (list 10 10 h-year)) 7) 6) 11 10)) "Tzom Teveth")) (if all-hebrew-calendar-holidays (holiday-hebrew 11 15 "Tu B'Shevat")))))
  1571.  
  1572. (defvar hebrew-holidays-3 (quote ((if all-hebrew-calendar-holidays (holiday-hebrew 11 (let ((m displayed-month) (y displayed-year)) (increment-calendar-month m y 1) (let* ((h-year (extract-calendar-year (calendar-hebrew-from-absolute (calendar-absolute-from-gregorian (list m (calendar-last-day-of-month m y) y))))) (s-s (calendar-hebrew-from-absolute (if (= (% (calendar-absolute-from-hebrew (list 7 1 h-year)) 7) 6) (calendar-dayname-on-or-before 6 (calendar-absolute-from-hebrew (list 11 17 h-year))) (calendar-dayname-on-or-before 6 (calendar-absolute-from-hebrew (list 11 16 h-year)))))) (day (extract-calendar-day s-s))) day)) "Shabbat Shirah")))))
  1573.  
  1574. (defvar hebrew-holidays-4 (quote ((holiday-passover-etc) (if (and all-hebrew-calendar-holidays (let* ((m displayed-month) (y displayed-year) (year)) (increment-calendar-month m y -1) (let ((year (extract-calendar-year (calendar-julian-from-absolute (calendar-absolute-from-gregorian (list m 1 y)))))) (= 21 (% year 28))))) (holiday-julian 3 26 "Kiddush HaHamah")) (if all-hebrew-calendar-holidays (holiday-tisha-b-av-etc)))))
  1575.  
  1576. (defvar hebrew-holidays (append hebrew-holidays-1 hebrew-holidays-2 hebrew-holidays-3 hebrew-holidays-4) "\
  1577. *Jewish holidays.
  1578. See the documentation for `calendar-holidays' for details.")
  1579.  
  1580. (defvar christian-holidays (quote ((if all-christian-calendar-holidays (holiday-fixed 1 6 "Epiphany")) (holiday-easter-etc) (if all-christian-calendar-holidays (holiday-greek-orthodox-easter)) (if all-christian-calendar-holidays (holiday-fixed 8 15 "Assumption")) (if all-christian-calendar-holidays (holiday-advent)) (holiday-fixed 12 25 "Christmas") (if all-christian-calendar-holidays (holiday-julian 12 25 "Eastern Orthodox Christmas")))) "\
  1581. *Christian holidays.
  1582. See the documentation for `calendar-holidays' for details.")
  1583.  
  1584. (defvar islamic-holidays (quote ((holiday-islamic 1 1 (format "Islamic New Year %d" (let ((m displayed-month) (y displayed-year)) (increment-calendar-month m y 1) (extract-calendar-year (calendar-islamic-from-absolute (calendar-absolute-from-gregorian (list m (calendar-last-day-of-month m y) y))))))) (if all-islamic-calendar-holidays (holiday-islamic 1 10 "Ashura")) (if all-islamic-calendar-holidays (holiday-islamic 3 12 "Mulad-al-Nabi")) (if all-islamic-calendar-holidays (holiday-islamic 7 26 "Shab-e-Mi'raj")) (if all-islamic-calendar-holidays (holiday-islamic 8 15 "Shab-e-Bara't")) (holiday-islamic 9 1 "Ramadan Begins") (if all-islamic-calendar-holidays (holiday-islamic 9 27 "Shab-e Qadr")) (if all-islamic-calendar-holidays (holiday-islamic 10 1 "Id-al-Fitr")) (if all-islamic-calendar-holidays (holiday-islamic 12 10 "Id-al-Adha")))) "\
  1585. *Islamic holidays.
  1586. See the documentation for `calendar-holidays' for details.")
  1587.  
  1588. (defvar solar-holidays (quote ((if (fboundp (quote atan)) (solar-equinoxes-solstices)) (if (progn (require (quote cal-dst)) t) (funcall (quote holiday-sexp) calendar-daylight-savings-starts (quote (format "Daylight Savings Time Begins %s" (if (fboundp (quote atan)) (solar-time-string (/ calendar-daylight-savings-starts-time (float 60)) date (quote standard)) ""))))) (funcall (quote holiday-sexp) calendar-daylight-savings-ends (quote (format "Daylight Savings Time Ends %s" (if (fboundp (quote atan)) (solar-time-string (/ (- calendar-daylight-savings-ends-time calendar-daylight-time-offset) (float 60)) date (quote daylight)) "")))))) "\
  1589. *Sun-related holidays.
  1590. See the documentation for `calendar-holidays' for details.")
  1591.  
  1592. (autoload (quote calendar) "calendar" "\
  1593. Display a three-month calendar in another window.
  1594. The three months appear side by side, with the current month in the middle
  1595. surrounded by the previous and next months.  The cursor is put on today's date.
  1596.  
  1597. If called with an optional prefix argument, prompts for month and year.
  1598.  
  1599. This function is suitable for execution in a .emacs file; appropriate setting
  1600. of the variable `view-diary-entries-initially' will cause the diary entries for
  1601. the current date to be displayed in another window.  The value of the variable
  1602. `number-of-diary-entries' controls the number of days of diary entries
  1603. displayed upon initial display of the calendar.
  1604.  
  1605. An optional prefix argument ARG causes the calendar displayed to be ARG
  1606. months in the future if ARG is positive or in the past if ARG is negative;
  1607. in this case the cursor goes on the first day of the month.
  1608.  
  1609. Once in the calendar window, future or past months can be moved into view.
  1610. Arbitrary months can be displayed, or the calendar can be scrolled forward
  1611. or backward.
  1612.  
  1613. The cursor can be moved forward or backward by one day, one week, one month,
  1614. or one year.  All of these commands take prefix arguments which, when negative,
  1615. cause movement in the opposite direction.  For convenience, the digit keys
  1616. and the minus sign are automatically prefixes.  The window is replotted as
  1617. necessary to display the desired date.
  1618.  
  1619. Diary entries can be marked on the calendar or displayed in another window.
  1620.  
  1621. Use M-x describe-mode for details of the key bindings in the calendar window.
  1622.  
  1623. The Gregorian calendar is assumed.
  1624.  
  1625. After loading the calendar, the hooks given by the variable
  1626. `calendar-load-hook' are run.  This the place to add key bindings to the
  1627. calendar-mode-map.
  1628.  
  1629. After preparing the calendar window initially, the hooks given by the variable
  1630. `initial-calendar-window-hook' are run.
  1631.  
  1632. The hooks given by the variable `today-visible-calendar-hook' are run
  1633. everytime the calendar window gets scrolled, if the current date is visible
  1634. in the window.  If it is not visible, the hooks given by the variable
  1635. `today-invisible-calendar-hook' are run.  Thus, for example, setting
  1636. `today-visible-calendar-hook' to 'calendar-star-date will cause today's date
  1637. to be replaced by asterisks to highlight it whenever it is in the window." t nil)
  1638.  
  1639. (autoload (quote list-yahrzeit-dates) "calendar" "\
  1640. List Yahrzeit dates for *Gregorian* DEATH-DATE from START-YEAR to END-YEAR.
  1641. When called interactively from the calendar window, the date of death is taken
  1642. from the cursor position." t nil)
  1643.  
  1644. ;;;***
  1645.  
  1646. ;;;### (autoloads (set-case-syntax set-case-syntax-pair set-case-syntax-delims describe-buffer-case-table) "case-table" "case-table.el" (11283 37570))
  1647. ;;; Generated autoloads from case-table.el
  1648.  
  1649. (autoload (quote describe-buffer-case-table) "case-table" "\
  1650. Describe the case table of the current buffer." t nil)
  1651.  
  1652. (autoload (quote set-case-syntax-delims) "case-table" "\
  1653. Make characters L and R a matching pair of non-case-converting delimiters.
  1654. This sets the entries for L and R in TABLE, which is a string
  1655. that will be used as the downcase part of a case table.
  1656. It also modifies `standard-syntax-table', and `text-mode-syntax-table' to
  1657. indicate left and right delimiters." nil nil)
  1658.  
  1659. (autoload (quote set-case-syntax-pair) "case-table" "\
  1660. Make characters UC and LC a pair of inter-case-converting letters.
  1661. This sets the entries for characters UC and LC in TABLE, which is a string
  1662. that will be used as the downcase part of a case table.
  1663. It also modifies `standard-syntax-table' and `text-mode-syntax-table'
  1664. to indicate an (uppercase, lowercase) pair of letters." nil nil)
  1665.  
  1666. (autoload (quote set-case-syntax) "case-table" "\
  1667. Make characters C case-invariant with syntax SYNTAX.
  1668. This sets the entries for character C in TABLE, which is a string
  1669. that will be used as the downcase part of a case table.
  1670. It also modifies `standard-syntax-table' and `text-mode-syntax-table'.
  1671. SYNTAX should be \" \", \"w\", \".\" or \"_\"." nil nil)
  1672.  
  1673. ;;;***
  1674.  
  1675. ;;;### (autoloads (command-history-mode list-command-history repeat-matching-complex-command) "chistory" "chistory.el" (11196 27803))
  1676. ;;; Generated autoloads from chistory.el
  1677.  
  1678. (autoload (quote repeat-matching-complex-command) "chistory" "\
  1679. Edit and re-evaluate complex command with name matching PATTERN.
  1680. Matching occurrences are displayed, most recent first, until you select
  1681. a form for evaluation.  If PATTERN is empty (or nil), every form in the
  1682. command history is offered.  The form is placed in the minibuffer for
  1683. editing and the result is evaluated." t nil)
  1684.  
  1685. (autoload (quote list-command-history) "chistory" "\
  1686. List history of commands typed to minibuffer.
  1687. The number of commands listed is controlled by `list-command-history-max'.
  1688. Calls value of `list-command-history-filter' (if non-nil) on each history
  1689. element to judge if that element should be excluded from the list.
  1690.  
  1691. The buffer is left in Command History mode." t nil)
  1692.  
  1693. (autoload (quote command-history-mode) "chistory" "\
  1694. Major mode for examining commands from `command-history'.
  1695. The number of commands listed is controlled by `list-command-history-max'.
  1696. The command history is filtered by `list-command-history-filter' if non-nil.
  1697. Use \\<command-history-map>\\[command-history-repeat] to repeat the command on the current line.
  1698.  
  1699. Otherwise much like Emacs-Lisp Mode except that there is no self-insertion
  1700. and digits provide prefix arguments.  Tab does not indent.
  1701. \\{command-history-map}
  1702. Calls the value of `command-history-hook' if that is non-nil.
  1703. The Command History listing is recomputed each time this mode is invoked." t nil)
  1704.  
  1705. ;;;***
  1706.  
  1707. ;;;### (autoloads (common-lisp-indent-function) "cl-indent" "cl-indent.el" (11285 49748))
  1708. ;;; Generated autoloads from cl-indent.el
  1709.  
  1710. (autoload (quote common-lisp-indent-function) "cl-indent" nil nil nil)
  1711.  
  1712. ;;;***
  1713.  
  1714. ;;;### (autoloads (make-comint) "comint" "comint.el" (11367 8243))
  1715. ;;; Generated autoloads from comint.el
  1716.  
  1717. (autoload (quote make-comint) "comint" "\
  1718. Make a comint process NAME in a buffer, running PROGRAM.
  1719. The name of the buffer is made by surrounding NAME with `*'s.
  1720. If there is already a running process in that buffer, it is not restarted.
  1721. Optional third arg STARTFILE is the name of a file to send the contents of to 
  1722. the process.  Any more args are arguments to PROGRAM." nil nil)
  1723.  
  1724. ;;;***
  1725.  
  1726. ;;;### (autoloads (compare-windows) "compare-w" "compare-w.el" (11330 25785))
  1727. ;;; Generated autoloads from compare-w.el
  1728.  
  1729. (autoload (quote compare-windows) "compare-w" "\
  1730. Compare text in current window with text in next window.
  1731. Compares the text starting at point in each window,
  1732. moving over text in each one as far as they match.
  1733.  
  1734. A prefix arg means ignore changes in whitespace.
  1735. The variable `compare-windows-whitespace' controls how whitespace is skipped.
  1736. If `compare-ignore-case' is non-nil, changes in case are also ignored." t nil)
  1737.  
  1738. ;;;***
  1739.  
  1740. ;;;### (autoloads (next-error compilation-minor-mode grep compile) "compile" "compile.el" (11358 55857))
  1741. ;;; Generated autoloads from compile.el
  1742.  
  1743. (defvar compilation-mode-hook nil "\
  1744. *List of hook functions run by `compilation-mode' (see `run-hooks').")
  1745.  
  1746. (defconst compilation-window-height nil "\
  1747. *Number of lines in a compilation window.  If nil, use Emacs default.")
  1748.  
  1749. (defvar compilation-buffer-name-function nil "\
  1750. Function to compute the name of a compilation buffer.
  1751. The function receives one argument, the name of the major mode of the
  1752. compilation buffer.  It should return a string.
  1753. nil means compute the name with `(concat \"*\" (downcase major-mode) \"*\")'.")
  1754.  
  1755. (defvar compilation-finish-function nil "\
  1756. *Function to call when a compilation process finishes.
  1757. It is called with two arguments: the compilation buffer, and a string
  1758. describing how the process finished.")
  1759.  
  1760. (defvar compilation-search-path (quote (nil)) "\
  1761. *List of directories to search for source files named in error messages.
  1762. Elements should be directory names, not file names of directories.
  1763. nil as an element means to try the default directory.")
  1764.  
  1765. (autoload (quote compile) "compile" "\
  1766. Compile the program including the current buffer.  Default: run `make'.
  1767. Runs COMMAND, a shell command, in a separate process asynchronously
  1768. with output going to the buffer `*compilation*'.
  1769.  
  1770. You can then use the command \\[next-error] to find the next error message
  1771. and move to the source code that caused it.
  1772.  
  1773. To run more than one compilation at once, start one and rename the
  1774. `*compilation*' buffer to some other name with \\[rename-buffer].
  1775. Then start the next one.
  1776.  
  1777. The name used for the buffer is actually whatever is returned by
  1778. the function in `compilation-buffer-name-function', so you can set that
  1779. to a function that generates a unique name." t nil)
  1780.  
  1781. (autoload (quote grep) "compile" "\
  1782. Run grep, with user-specified args, and collect output in a buffer.
  1783. While grep runs asynchronously, you can use the \\[next-error] command
  1784. to find the text that grep hits refer to.
  1785.  
  1786. This command uses a special history list for its arguments, so you can
  1787. easily repeat a grep command." t nil)
  1788.  
  1789. (autoload (quote compilation-minor-mode) "compile" "\
  1790. Toggle compilation minor mode.
  1791. With arg, turn compilation mode on if and only if arg is positive.
  1792. See `compilation-mode'." t nil)
  1793.  
  1794. (autoload (quote next-error) "compile" "\
  1795. Visit next compilation error message and corresponding source code.
  1796. This operates on the output from the \\[compile] command.
  1797. If all preparsed error messages have been processed,
  1798. the error message buffer is checked for new ones.
  1799.  
  1800. A prefix arg specifies how many error messages to move;
  1801. negative means move back to previous error messages.
  1802. Just C-u as a prefix means reparse the error message buffer
  1803. and start at the first error.
  1804.  
  1805. \\[next-error] normally applies to the most recent compilation started,
  1806. but as long as you are in the middle of parsing errors from one compilation
  1807. output buffer, you stay with that compilation output buffer.
  1808.  
  1809. Use \\[next-error] in a compilation output buffer to switch to
  1810. processing errors from that compilation.
  1811.  
  1812. See variables `compilation-parse-errors-function' and
  1813. `compilation-error-regexp-alist' for customization ideas." t nil)
  1814.  
  1815. (define-key ctl-x-map "`" (quote next-error))
  1816.  
  1817. ;;;***
  1818.  
  1819. ;;;### (autoloads (shuffle-vector cookie-snarf cookie-insert cookie) "cookie1" "cookie1.el" (11356 11391))
  1820. ;;; Generated autoloads from cookie1.el
  1821.  
  1822. (autoload (quote cookie) "cookie1" "\
  1823. Return a random phrase from PHRASE-FILE.  When the phrase file
  1824. is read in, display STARTMSG at beginning of load, ENDMSG at end." nil nil)
  1825.  
  1826. (autoload (quote cookie-insert) "cookie1" "\
  1827. Insert random phrases from PHRASE-FILE; COUNT of them.  When the phrase file
  1828. is read in, display STARTMSG at beginning of load, ENDMSG at end." nil nil)
  1829.  
  1830. (autoload (quote cookie-snarf) "cookie1" "\
  1831. Reads in the PHRASE-FILE, returns it as a vector of strings.  Emit
  1832. STARTMSG and ENDMSG before and after.  Caches the result; second and
  1833. subsequent calls on the same file won't go to disk." nil nil)
  1834.  
  1835. (autoload (quote shuffle-vector) "cookie1" "\
  1836. Randomly permute the elements of VECTOR (all permutations equally likely)" nil nil)
  1837.  
  1838. ;;;***
  1839.  
  1840. ;;;### (autoloads (c++-mode) "cplus-md" "cplus-md.el" (11349 24039))
  1841. ;;; Generated autoloads from cplus-md.el
  1842.  
  1843. (autoload (quote c++-mode) "cplus-md" "\
  1844. Major mode for editing C++ code.  Very much like editing C code.
  1845. Expression and list commands understand all C++ brackets.
  1846. Tab at left margin indents for C++ code
  1847. Comments are delimited with /* ... */ {or with // ... <newline>}
  1848. Paragraphs are separated by blank lines only.
  1849. Delete converts tabs to spaces as it moves back.
  1850. \\{c++-mode-map}
  1851. Variables controlling indentation style:
  1852.  c-tab-always-indent
  1853.     Non-nil means TAB in C mode should always reindent the current line,
  1854.     regardless of where in the line point is when the TAB command is used.
  1855.     Default is t.
  1856.  c-auto-newline
  1857.     Non-nil means automatically newline before and after braces,
  1858.     and after colons and semicolons, inserted in C code.
  1859.  c-indent-level
  1860.     Indentation of C statements within surrounding block.
  1861.     The surrounding block's indentation is the indentation
  1862.     of the line on which the open-brace appears.
  1863.  c-continued-statement-offset
  1864.     Extra indentation given to a substatement, such as the
  1865.     then-clause of an if or body of a while.
  1866.  c-continued-brace-offset
  1867.     Extra indentation given to a brace that starts a substatement.
  1868.     This is in addition to c-continued-statement-offset.
  1869.  c-brace-offset
  1870.     Extra indentation for line if it starts with an open brace.
  1871.  c-brace-imaginary-offset
  1872.     An open brace following other text is treated as if it were
  1873.     this far to the right of the start of its line.
  1874.  c-argdecl-indent
  1875.     Indentation level of declarations of C function arguments.
  1876.  c-label-offset
  1877.     Extra indentation for line that is a label, or case or ``default:'', or
  1878.     ``public:'' or ``private:'', or ``protected:''.
  1879.  c++-electric-colon
  1880.     If non-nil at invocation of c++-mode (t is the default) colon electricly
  1881.     indents.
  1882.  c++-empty-arglist-indent
  1883.     If non-nil, a function declaration or invocation which ends a line with a
  1884.     left paren is indented this many extra spaces, instead of flush with the
  1885.     left paren.
  1886.  c++-friend-offset
  1887.     Offset of C++ friend class declarations relative to member declarations.
  1888.  c++-member-init-indent
  1889.     Indentation level of member initializations in function declarations,
  1890.     if they are on a separate line beginning with a colon.
  1891.  c++-continued-member-init-offset
  1892.     Extra indentation for continuation lines of member initializations; NIL
  1893.     means to align with previous initializations rather than with the colon.
  1894.  
  1895. Settings for K&R, BSD, and Stroustrup indentation styles are
  1896.   c-indent-level                5    8    4
  1897.   c-continued-statement-offset  5    8    4
  1898.   c-continued-brace-offset                0
  1899.   c-brace-offset               -5   -8    0
  1900.   c-brace-imaginary-offset                0
  1901.   c-argdecl-indent              0    8    4
  1902.   c-label-offset               -5   -8   -4
  1903.   c++-empty-arglist-indent                4
  1904.   c++-friend-offset                       0
  1905.  
  1906. Turning on C++ mode calls the value of the variable `c++-mode-hook' with
  1907. no args if that value is non-nil." t nil)
  1908.  
  1909. ;;;***
  1910.  
  1911. ;;;### (autoloads (dabbrev-expand) "dabbrev" "dabbrev.el" (11292 51554))
  1912. ;;; Generated autoloads from dabbrev.el
  1913.  
  1914. (autoload (quote dabbrev-expand) "dabbrev" "\
  1915. Expand previous word \"dynamically\".
  1916. Expands to the most recent, preceding word for which this is a prefix.
  1917. If no suitable preceding word is found, words following point are considered.
  1918.  
  1919. If `case-fold-search' and `case-replace' are non-nil (usually true)
  1920. then the substituted word may be case-adjusted to match the abbreviation
  1921. that you had typed.  This takes place if the substituted word, as found,
  1922. is all lower case, or if it is at the beginning of a sentence and only
  1923. its first letter was upper case.
  1924.  
  1925. A positive prefix arg N says to take the Nth backward DISTINCT
  1926. possibility.  A negative argument says search forward.  The variable
  1927. `dabbrev-backward-only' may be used to limit the direction of search to
  1928. backward if set non-nil.
  1929.  
  1930. If the cursor has not moved from the end of the previous expansion and
  1931. no argument is given, replace the previously-made expansion
  1932. with the next possible expansion not yet tried." t nil)
  1933.  
  1934. (define-key esc-map "/" (quote dabbrev-expand))
  1935.  
  1936. ;;;***
  1937.  
  1938. ;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug" "debug.el" (11181 53262))
  1939. ;;; Generated autoloads from debug.el
  1940.  
  1941. (setq debugger (quote debug))
  1942.  
  1943. (autoload (quote debug) "debug" "\
  1944. Enter debugger.  Returns if user says \"continue\".
  1945. Arguments are mainly for use when this is called from the internals
  1946. of the evaluator.
  1947.  
  1948. You may call with no args, or you may pass nil as the first arg and
  1949. any other args you like.  In that case, the list of args after the
  1950. first will be printed into the backtrace buffer." nil nil)
  1951.  
  1952. (autoload (quote debug-on-entry) "debug" "\
  1953. Request FUNCTION to invoke debugger each time it is called.
  1954. If the user continues, FUNCTION's execution proceeds.
  1955. Works by modifying the definition of FUNCTION,
  1956. which must be written in Lisp, not predefined.
  1957. Use \\[cancel-debug-on-entry] to cancel the effect of this command.
  1958. Redefining FUNCTION also does that." t nil)
  1959.  
  1960. (autoload (quote cancel-debug-on-entry) "debug" "\
  1961. Undo effect of \\[debug-on-entry] on FUNCTION.
  1962. If argument is nil or an empty string, cancel for all functions." t nil)
  1963.  
  1964. ;;;***
  1965.  
  1966. ;;;### (autoloads (delete-selection-mode) "delsel" "delsel.el" (11259 36696))
  1967. ;;; Generated autoloads from delsel.el
  1968.  
  1969. (defalias (quote pending-delete-mode) (quote delete-selection-mode))
  1970.  
  1971. (autoload (quote delete-selection-mode) "delsel" "\
  1972. Toggle Delete Selection mode.
  1973. When ON, typed text replaces the selection if the selection is active.
  1974. When OFF, typed text is just inserted at point." t nil)
  1975.  
  1976. ;;;***
  1977.  
  1978. ;;;### (autoloads (diary) "diary" "diary.el" (11360 16265))
  1979. ;;; Generated autoloads from diary.el
  1980.  
  1981. (autoload (quote diary) "diary" "\
  1982. Generate the diary window for ARG days starting with the current date.
  1983. If no argument is provided, the number of days of diary entries is governed
  1984. by the variable `number-of-diary-entries'.  This function is suitable for
  1985. execution in a `.emacs' file." t nil)
  1986.  
  1987. ;;;***
  1988.  
  1989. ;;;### (autoloads (diff-backup diff) "diff" "diff.el" (11302 33003))
  1990. ;;; Generated autoloads from diff.el
  1991.  
  1992. (autoload (quote diff) "diff" "\
  1993. Find and display the differences between OLD and NEW files.
  1994. Interactively the current buffer's file name is the default for for NEW
  1995. and a backup file for NEW is the default for OLD.
  1996. With prefix arg, prompt for diff switches." t nil)
  1997.  
  1998. (autoload (quote diff-backup) "diff" "\
  1999. Diff this file with its backup file or vice versa.
  2000. Uses the latest backup, if there are several numerical backups.
  2001. If this file is a backup, diff it with its original.
  2002. The backup file is the first file given to `diff'." t nil)
  2003.  
  2004. ;;;***
  2005.  
  2006. ;;;### (autoloads (dired-hide-all dired-hide-subdir dired-tree-down dired-tree-up dired-kill-subdir dired-mark-subdir-files dired-goto-subdir dired-prev-subdir dired-maybe-insert-subdir dired-downcase dired-upcase dired-do-symlink-regexp dired-do-hardlink-regexp dired-do-copy-regexp dired-do-rename-regexp dired-do-rename dired-do-hardlink dired-do-symlink dired-do-copy dired-create-directory dired-string-replace-match dired-do-redisplay dired-do-load dired-do-byte-compile dired-do-compress dired-do-kill-lines dired-do-shell-command dired-do-print dired-do-chown dired-do-chgrp dired-do-chmod dired-backup-diff dired-diff) "dired-aux" "dired-aux.el" (11364 34565))
  2007. ;;; Generated autoloads from dired-aux.el
  2008.  
  2009. (autoload (quote dired-diff) "dired-aux" "\
  2010. Compare file at point with file FILE using `diff'.
  2011. FILE defaults to the file at the mark.
  2012. The prompted-for file is the first file given to `diff'.
  2013. With prefix arg, prompt for second argument SWITCHES,
  2014.  which is options for `diff'." t nil)
  2015.  
  2016. (autoload (quote dired-backup-diff) "dired-aux" "\
  2017. Diff this file with its backup file or vice versa.
  2018. Uses the latest backup, if there are several numerical backups.
  2019. If this file is a backup, diff it with its original.
  2020. The backup file is the first file given to `diff'.
  2021. With prefix arg, prompt for argument SWITCHES which is options for `diff'." t nil)
  2022.  
  2023. (autoload (quote dired-do-chmod) "dired-aux" "\
  2024. Change the mode of the marked (or next ARG) files.
  2025. This calls chmod, thus symbolic modes like `g+w' are allowed." t nil)
  2026.  
  2027. (autoload (quote dired-do-chgrp) "dired-aux" "\
  2028. Change the group of the marked (or next ARG) files." t nil)
  2029.  
  2030. (autoload (quote dired-do-chown) "dired-aux" "\
  2031. Change the owner of the marked (or next ARG) files." t nil)
  2032.  
  2033. (autoload (quote dired-do-print) "dired-aux" "\
  2034. Print the marked (or next ARG) files.
  2035. Uses the shell command coming from variables `lpr-command' and
  2036. `lpr-switches' as default." t nil)
  2037.  
  2038. (autoload (quote dired-do-shell-command) "dired-aux" "\
  2039. Run a shell command COMMAND on the marked files.
  2040. If no files are marked or a specific numeric prefix arg is given,
  2041. the next ARG files are used.  Just \\[universal-argument] means the current file.
  2042. The prompt mentions the file(s) or the marker, as appropriate.
  2043.  
  2044. If there is output, it goes to a separate buffer.
  2045.  
  2046. Normally the command is run on each file individually.
  2047. However, if there is a `*' in the command then it is run
  2048. just once with the entire file list substituted there.
  2049.  
  2050. No automatic redisplay of dired buffers is attempted, as there's no
  2051. telling what files the command may have changed.  Type
  2052. \\[dired-do-redisplay] to redisplay the marked files.
  2053.  
  2054. The shell command has the top level directory as working directory, so
  2055. output files usually are created there instead of in a subdir." t nil)
  2056.  
  2057. (autoload (quote dired-do-kill-lines) "dired-aux" "\
  2058. Kill all marked lines (not the files).
  2059. With a prefix argument, kill that many lines starting with the current line.
  2060. (A negative argument kills lines before the current line.)
  2061. To kill an entire subdirectory, go to its directory header line
  2062. and use this command with a prefix argument (the value does not matter)." t nil)
  2063.  
  2064. (autoload (quote dired-do-compress) "dired-aux" "\
  2065. Compress or uncompress marked (or next ARG) files." t nil)
  2066.  
  2067. (autoload (quote dired-do-byte-compile) "dired-aux" "\
  2068. Byte compile marked (or next ARG) Emacs Lisp files." t nil)
  2069.  
  2070. (autoload (quote dired-do-load) "dired-aux" "\
  2071. Load the marked (or next ARG) Emacs Lisp files." t nil)
  2072.  
  2073. (autoload (quote dired-do-redisplay) "dired-aux" "\
  2074. Redisplay all marked (or next ARG) files.
  2075. If on a subdir line, redisplay that subdirectory.  In that case,
  2076. a prefix arg lets you edit the `ls' switches used for the new listing." t nil)
  2077.  
  2078. (autoload (quote dired-string-replace-match) "dired-aux" "\
  2079. Replace first match of REGEXP in STRING with NEWTEXT.
  2080. If it does not match, nil is returned instead of the new string.
  2081. Optional arg LITERAL means to take NEWTEXT literally.
  2082. Optional arg GLOBAL means to replace all matches." nil nil)
  2083.  
  2084. (autoload (quote dired-create-directory) "dired-aux" "\
  2085. Create a directory called DIRECTORY." t nil)
  2086.  
  2087. (autoload (quote dired-do-copy) "dired-aux" "\
  2088. Copy all marked (or next ARG) files, or copy the current file.
  2089. This normally preserves the last-modified date when copying.
  2090. When operating on just the current file, you specify the new name.
  2091. When operating on multiple or marked files, you specify a directory
  2092. and new symbolic links are made in that directory
  2093. with the same names that the files currently have." t nil)
  2094.  
  2095. (autoload (quote dired-do-symlink) "dired-aux" "\
  2096. Make symbolic links to current file or all marked (or next ARG) files.
  2097. When operating on just the current file, you specify the new name.
  2098. When operating on multiple or marked files, you specify a directory
  2099. and new symbolic links are made in that directory
  2100. with the same names that the files currently have." t nil)
  2101.  
  2102. (autoload (quote dired-do-hardlink) "dired-aux" "\
  2103. Add names (hard links) current file or all marked (or next ARG) files.
  2104. When operating on just the current file, you specify the new name.
  2105. When operating on multiple or marked files, you specify a directory
  2106. and new hard links are made in that directory
  2107. with the same names that the files currently have." t nil)
  2108.  
  2109. (autoload (quote dired-do-rename) "dired-aux" "\
  2110. Rename current file or all marked (or next ARG) files.
  2111. When renaming just the current file, you specify the new name.
  2112. When renaming multiple or marked files, you specify a directory." t nil)
  2113.  
  2114. (autoload (quote dired-do-rename-regexp) "dired-aux" "\
  2115. Rename marked files containing REGEXP to NEWNAME.
  2116. As each match is found, the user must type a character saying
  2117.   what to do with it.  For directions, type \\[help-command] at that time.
  2118. NEWNAME may contain \\=\\<n> or \\& as in `query-replace-regexp'.
  2119. REGEXP defaults to the last regexp used.
  2120. With a zero prefix arg, renaming by regexp affects the complete
  2121.   pathname - usually only the non-directory part of file names is used
  2122.   and changed." t nil)
  2123.  
  2124. (autoload (quote dired-do-copy-regexp) "dired-aux" "\
  2125. Copy all marked files containing REGEXP to NEWNAME.
  2126. See function `dired-rename-regexp' for more info." t nil)
  2127.  
  2128. (autoload (quote dired-do-hardlink-regexp) "dired-aux" "\
  2129. Hardlink all marked files containing REGEXP to NEWNAME.
  2130. See function `dired-rename-regexp' for more info." t nil)
  2131.  
  2132. (autoload (quote dired-do-symlink-regexp) "dired-aux" "\
  2133. Symlink all marked files containing REGEXP to NEWNAME.
  2134. See function `dired-rename-regexp' for more info." t nil)
  2135.  
  2136. (autoload (quote dired-upcase) "dired-aux" "\
  2137. Rename all marked (or next ARG) files to upper case." t nil)
  2138.  
  2139. (autoload (quote dired-downcase) "dired-aux" "\
  2140. Rename all marked (or next ARG) files to lower case." t nil)
  2141.  
  2142. (autoload (quote dired-maybe-insert-subdir) "dired-aux" "\
  2143. Insert this subdirectory into the same dired buffer.
  2144. If it is already present, just move to it (type \\[dired-do-redisplay] to refresh),
  2145.   else inserts it at its natural place (as `ls -lR' would have done).
  2146. With a prefix arg, you may edit the ls switches used for this listing.
  2147.   You can add `R' to the switches to expand the whole tree starting at
  2148.   this subdirectory.
  2149. This function takes some pains to conform to `ls -lR' output." t nil)
  2150.  
  2151. (autoload (quote dired-prev-subdir) "dired-aux" "\
  2152. Go to previous subdirectory, regardless of level.
  2153. When called interactively and not on a subdir line, go to this subdir's line." t nil)
  2154.  
  2155. (autoload (quote dired-goto-subdir) "dired-aux" "\
  2156. Go to end of header line of DIR in this dired buffer.
  2157. Return value of point on success, otherwise return nil.
  2158. The next char is either \\n, or \\r if DIR is hidden." t nil)
  2159.  
  2160. (autoload (quote dired-mark-subdir-files) "dired-aux" "\
  2161. Mark all files except `.' and `..'." t nil)
  2162.  
  2163. (autoload (quote dired-kill-subdir) "dired-aux" "\
  2164. Remove all lines of current subdirectory.
  2165. Lower levels are unaffected." t nil)
  2166.  
  2167. (autoload (quote dired-tree-up) "dired-aux" "\
  2168. Go up ARG levels in the dired tree." t nil)
  2169.  
  2170. (autoload (quote dired-tree-down) "dired-aux" "\
  2171. Go down in the dired tree." t nil)
  2172.  
  2173. (autoload (quote dired-hide-subdir) "dired-aux" "\
  2174. Hide or unhide the current subdirectory and move to next directory.
  2175. Optional prefix arg is a repeat factor.
  2176. Use \\[dired-hide-all] to (un)hide all directories." t nil)
  2177.  
  2178. (autoload (quote dired-hide-all) "dired-aux" "\
  2179. Hide all subdirectories, leaving only their header lines.
  2180. If there is already something hidden, make everything visible again.
  2181. Use \\[dired-hide-subdir] to (un)hide a particular subdirectory." t nil)
  2182.  
  2183. ;;;***
  2184.  
  2185. ;;;### (autoloads (dired-noselect dired-other-frame dired-other-window dired) "dired" "dired.el" (11355 44777))
  2186. ;;; Generated autoloads from dired.el
  2187.  
  2188. (defvar dired-listing-switches "-al" "\
  2189. *Switches passed to `ls' for dired.  MUST contain the `l' option.
  2190. May contain all other options that don't contradict `-l';
  2191. may contain even `F', `b', `i' and `s'.")
  2192.  
  2193. (defvar dired-chown-program (if (memq system-type (quote (hpux dgux usg-unix-v irix))) "chown" "/etc/chown") "\
  2194. Name of chown command (usually `chown' or `/etc/chown').")
  2195.  
  2196. (defvar dired-ls-F-marks-symlinks nil "\
  2197. *Informs dired about how `ls -lF' marks symbolic links.
  2198. Set this to t if `insert-directory-program' with `-lF' marks the symbolic link
  2199. itself with a trailing @ (usually the case under Ultrix).
  2200.  
  2201. Example: if `ln -s foo bar; ls -F bar' gives `bar -> foo', set it to
  2202. nil (the default), if it gives `bar@ -> foo', set it to t.
  2203.  
  2204. Dired checks if there is really a @ appended.  Thus, if you have a
  2205. marking `ls' program on one host and a non-marking on another host, and
  2206. don't care about symbolic links which really end in a @, you can
  2207. always set this variable to t.")
  2208.  
  2209. (defvar dired-trivial-filenames "^\\.\\.?$\\|^#" "\
  2210. *Regexp of files to skip when finding first file of a directory.
  2211. A value of nil means move to the subdir line.
  2212. A value of t means move to first file.")
  2213.  
  2214. (defvar dired-keep-marker-rename t "\
  2215. *Controls marking of renamed files.
  2216. If t, files keep their previous marks when they are renamed.
  2217. If a character, renamed files (whether previously marked or not)
  2218. are afterward marked with that character.")
  2219.  
  2220. (defvar dired-keep-marker-copy 67 "\
  2221. *Controls marking of copied files.
  2222. If t, copied files are marked if and as the corresponding original files were.
  2223. If a character, copied files are unconditionally marked with that character.")
  2224.  
  2225. (defvar dired-keep-marker-hardlink 72 "\
  2226. *Controls marking of newly made hard links.
  2227. If t, they are marked if and as the files linked to were marked.
  2228. If a character, new links are unconditionally marked with that character.")
  2229.  
  2230. (defvar dired-keep-marker-symlink 89 "\
  2231. *Controls marking of newly made symbolic links.
  2232. If t, they are marked if and as the files linked to were marked.
  2233. If a character, new links are unconditionally marked with that character.")
  2234.  
  2235. (defvar dired-dwim-target nil "\
  2236. *If non-nil, dired tries to guess a default target directory.
  2237. This means: if there is a dired buffer displayed in the next window,
  2238. use its current subdir, instead of the current subdir of this dired buffer.
  2239.  
  2240. The target is used in the prompt for file copy, rename etc.")
  2241.  
  2242. (defvar dired-copy-preserve-time t "\
  2243. *If non-nil, Dired preserves the last-modified time in a file copy.
  2244. (This works on only some systems.)")
  2245. (define-key ctl-x-map "d" 'dired)
  2246.  
  2247. (autoload (quote dired) "dired" "\
  2248. \"Edit\" directory DIRNAME--delete, rename, print, etc. some files in it.
  2249. Optional second argument SWITCHES specifies the `ls' options used.
  2250. (Interactively, use a prefix argument to be able to specify SWITCHES.)
  2251. Dired displays a list of files in DIRNAME (which may also have
  2252. shell wildcards appended to select certain files).  If DIRNAME is a cons,
  2253. its first element is taken as the directory name and the resr as an explicit
  2254. list of files to make directory entries for.
  2255. \\<dired-mode-map>You can move around in it with the usual commands.
  2256. You can flag files for deletion with \\[dired-flag-file-deletion] and then
  2257. delete them by typing \\[dired-do-flagged-delete].
  2258. Type \\[describe-mode] after entering dired for more info.
  2259.  
  2260. If DIRNAME is already in a dired buffer, that buffer is used without refresh." t nil)
  2261. (define-key ctl-x-4-map "d" 'dired-other-window)
  2262.  
  2263. (autoload (quote dired-other-window) "dired" "\
  2264. \"Edit\" directory DIRNAME.  Like `dired' but selects in another window." t nil)
  2265. (define-key ctl-x-5-map "d" 'dired-other-frame)
  2266.  
  2267. (autoload (quote dired-other-frame) "dired" "\
  2268. \"Edit\" directory DIRNAME.  Like `dired' but makes a new frame." t nil)
  2269.  
  2270. (autoload (quote dired-noselect) "dired" "\
  2271. Like `dired' but returns the dired buffer as value, does not select it." nil nil)
  2272.  
  2273. ;;;***
  2274.  
  2275. ;;;### (autoloads (disassemble) "disass" "disass.el" (11295 37242))
  2276. ;;; Generated autoloads from disass.el
  2277.  
  2278. (autoload (quote disassemble) "disass" "\
  2279. Print disassembled code for OBJECT in (optional) BUFFER.
  2280. OBJECT can be a symbol defined as a function, or a function itself
  2281. (a lambda expression or a compiled-function object).
  2282. If OBJECT is not already compiled, we compile it, but do not
  2283. redefine OBJECT if it is a symbol." t nil)
  2284.  
  2285. ;;;***
  2286.  
  2287. ;;;### (autoloads (standard-display-european create-glyph standard-display-underline standard-display-graphic standard-display-g1 standard-display-ascii standard-display-default standard-display-8bit make-display-table describe-current-display-table) "disp-table" "disp-table.el" (11265 29044))
  2288. ;;; Generated autoloads from disp-table.el
  2289.  
  2290. (autoload (quote describe-current-display-table) "disp-table" "\
  2291. Describe the display table in use in the selected window and buffer." t nil)
  2292.  
  2293. (autoload (quote make-display-table) "disp-table" "\
  2294. Return a new, empty display table." nil nil)
  2295.  
  2296. (autoload (quote standard-display-8bit) "disp-table" "\
  2297. Display characters in the range L to H literally." nil nil)
  2298.  
  2299. (autoload (quote standard-display-default) "disp-table" "\
  2300. Display characters in the range L to H using the default notation." nil nil)
  2301.  
  2302. (autoload (quote standard-display-ascii) "disp-table" "\
  2303. Display character C using string S." nil nil)
  2304.  
  2305. (autoload (quote standard-display-g1) "disp-table" "\
  2306. Display character C as character SC in the g1 character set." nil nil)
  2307.  
  2308. (autoload (quote standard-display-graphic) "disp-table" "\
  2309. Display character C as character GC in graphics character set." nil nil)
  2310.  
  2311. (autoload (quote standard-display-underline) "disp-table" "\
  2312. Display character C as character UC plus underlining." nil nil)
  2313.  
  2314. (autoload (quote create-glyph) "disp-table" nil nil nil)
  2315.  
  2316. (autoload (quote standard-display-european) "disp-table" "\
  2317. Toggle display of European characters encoded with ISO 8859.
  2318. When enabled, characters in the range of 160 to 255 display not
  2319. as octal escapes, but as accented characters.
  2320. With prefix argument, enable European character display iff arg is positive." t nil)
  2321.  
  2322. ;;;***
  2323.  
  2324. ;;;### (autoloads (dissociated-press) "dissociate" "dissociate.el" (11356 11391))
  2325. ;;; Generated autoloads from dissociate.el
  2326.  
  2327. (autoload (quote dissociated-press) "dissociate" "\
  2328. Dissociate the text of the current buffer.
  2329. Output goes in buffer named *Dissociation*,
  2330. which is redisplayed each time text is added to it.
  2331. Every so often the user must say whether to continue.
  2332. If ARG is positive, require ARG chars of continuity.
  2333. If ARG is negative, require -ARG words of continuity.
  2334. Default is 2." t nil)
  2335.  
  2336. ;;;***
  2337.  
  2338. ;;;### (autoloads (doctor) "doctor" "doctor.el" (11344 11919))
  2339. ;;; Generated autoloads from doctor.el
  2340.  
  2341. (autoload (quote doctor) "doctor" "\
  2342. Switch to *doctor* buffer and start giving psychotherapy." t nil)
  2343.  
  2344. ;;;***
  2345.  
  2346. ;;;### (autoloads (dunnet) "dunnet" "dunnet.el" (11356 11391))
  2347. ;;; Generated autoloads from dunnet.el
  2348.  
  2349. (autoload (quote dunnet) "dunnet" "\
  2350. Switch to *dungeon* buffer and start game." t nil)
  2351.  
  2352. ;;;***
  2353.  
  2354. ;;;### (autoloads (electric-buffer-list) "ebuff-menu" "ebuff-menu.el" (11189 17403))
  2355. ;;; Generated autoloads from ebuff-menu.el
  2356.  
  2357. (autoload (quote electric-buffer-list) "ebuff-menu" "\
  2358. Pops up a buffer describing the set of Emacs buffers.
  2359. Vaguely like ITS lunar select buffer; combining typeoutoid buffer
  2360. listing with menuoid buffer selection.
  2361.  
  2362. If the very next character typed is a space then the buffer list
  2363. window disappears.  Otherwise, one may move around in the buffer list
  2364. window, marking buffers to be selected, saved or deleted.
  2365.  
  2366. To exit and select a new buffer, type a space when the cursor is on
  2367. the appropriate line of the buffer-list window.  Other commands are
  2368. much like those of buffer-menu-mode.
  2369.  
  2370. Calls value of `electric-buffer-menu-mode-hook' on entry if non-nil.
  2371.  
  2372. \\{electric-buffer-menu-mode-map}" t nil)
  2373.  
  2374. ;;;***
  2375.  
  2376. ;;;### (autoloads (Electric-command-history-redo-expression) "echistory" "echistory.el" (11288 43486))
  2377. ;;; Generated autoloads from echistory.el
  2378.  
  2379. (autoload (quote Electric-command-history-redo-expression) "echistory" "\
  2380. Edit current history line in minibuffer and execute result.
  2381. With prefix arg NOCONFIRM, execute current line as-is without editing." t nil)
  2382.  
  2383. ;;;***
  2384.  
  2385. ;;;### (autoloads (edebug-debug edebug-defun) "edebug" "edebug.el" (11285 51182))
  2386. ;;; Generated autoloads from edebug.el
  2387.  
  2388. (autoload (quote edebug-defun) "edebug" "\
  2389. Evaluate defun or defmacro, like eval-defun, but with edebug calls.
  2390. Print its name in the minibuffer and leave point after any error it finds,
  2391. with mark at the original point." t nil)
  2392.  
  2393. (defvar global-edebug-prefix "X" "\
  2394. Prefix key for global edebug commands, available from any buffer.")
  2395.  
  2396. (defvar global-edebug-map nil "\
  2397. Global map of edebug commands, available from any buffer.")
  2398.  
  2399. (if global-edebug-map nil (setq global-edebug-map (make-sparse-keymap)) (global-unset-key global-edebug-prefix) (global-set-key global-edebug-prefix global-edebug-map) (define-key global-edebug-map "d" (quote edebug-defun)) (define-key global-edebug-map " " (quote edebug-step-through)) (define-key global-edebug-map "g" (quote edebug-go)) (define-key global-edebug-map "G" (quote edebug-Go-nonstop)) (define-key global-edebug-map "t" (quote edebug-trace)) (define-key global-edebug-map "T" (quote edebug-Trace-fast)) (define-key global-edebug-map "c" (quote edebug-continue)) (define-key global-edebug-map "C" (quote edebug-Continue-fast)) (define-key global-edebug-map "b" (quote edebug-set-breakpoint)) (define-key global-edebug-map "x" (quote edebug-set-conditional-breakpoint)) (define-key global-edebug-map "u" (quote edebug-unset-breakpoint)) (define-key global-edebug-map "w" (quote edebug-where)) (define-key global-edebug-map "q" (quote top-level)))
  2400.  
  2401. (autoload (quote edebug-debug) "edebug" "\
  2402. Replacement for debug.  
  2403. If an error or quit occurred and we are running an edebugged function,
  2404. show where we last were.  Otherwise call debug normally." nil nil)
  2405.  
  2406. ;;;***
  2407.  
  2408. ;;;### (autoloads (read-kbd-macro edit-kbd-macro edit-last-kbd-macro) "edmacro" "edmacro.el" (11176 61364))
  2409. ;;; Generated autoloads from edmacro.el
  2410.  
  2411. (autoload (quote edit-last-kbd-macro) "edmacro" "\
  2412. Edit the most recently defined keyboard macro." t nil)
  2413.  
  2414. (autoload (quote edit-kbd-macro) "edmacro" "\
  2415. Edit a keyboard macro which has been given a name by `name-last-kbd-macro'.
  2416. (See also `edit-last-kbd-macro'.)" t nil)
  2417.  
  2418. (autoload (quote read-kbd-macro) "edmacro" "\
  2419. Read the region as a keyboard macro definition.
  2420. The region is interpreted as spelled-out keystrokes, e.g., \"M-x abc RET\".
  2421. The resulting macro is installed as the \"current\" keyboard macro.
  2422.  
  2423. Symbols:  RET, SPC, TAB, DEL, LFD, NUL; C-key; M-key.  (Must be uppercase.)
  2424.           REM marks the rest of a line as a comment.
  2425.           Whitespace is ignored; other characters are copied into the macro." t nil)
  2426.  
  2427. ;;;***
  2428.  
  2429. ;;;### (autoloads (edt-emulation-on) "edt" "edt.el" (11344 10928))
  2430. ;;; Generated autoloads from edt.el
  2431.  
  2432. (autoload (quote edt-emulation-on) "edt" "\
  2433. Emulate DEC's EDT editor.
  2434. Note that many keys are rebound; including nearly all keypad keys.
  2435. Use \\[edt-emulation-off] to undo all rebindings except the keypad keys." t nil)
  2436.  
  2437. ;;;***
  2438.  
  2439. ;;;### (autoloads (report-emacs-bug) "emacsbug" "emacsbug.el" (11185 3426))
  2440. ;;; Generated autoloads from emacsbug.el
  2441.  
  2442. (autoload (quote report-emacs-bug) "emacsbug" "\
  2443. Report a bug in GNU Emacs.
  2444. Prompts for bug subject.  Leaves you in a mail buffer." t nil)
  2445.  
  2446. ;;;***
  2447.  
  2448. ;;;### (autoloads (emerge-files-with-ancestor-remote emerge-files-remote emerge-files-with-ancestor-command emerge-files-command emerge-buffers-with-ancestor emerge-buffers emerge-files-with-ancestor emerge-files) "emerge" "emerge.el" (11356 11307))
  2449. ;;; Generated autoloads from emerge.el
  2450.  
  2451. (autoload (quote emerge-files) "emerge" "\
  2452. Run Emerge on two files." t nil)
  2453.  
  2454. (autoload (quote emerge-files-with-ancestor) "emerge" "\
  2455. Run Emerge on two files, giving another file as the ancestor." t nil)
  2456.  
  2457. (autoload (quote emerge-buffers) "emerge" "\
  2458. Run Emerge on two buffers." t nil)
  2459.  
  2460. (autoload (quote emerge-buffers-with-ancestor) "emerge" "\
  2461. Run Emerge on two buffers, giving another buffer as the ancestor." t nil)
  2462.  
  2463. (autoload (quote emerge-files-command) "emerge" nil nil nil)
  2464.  
  2465. (autoload (quote emerge-files-with-ancestor-command) "emerge" nil nil nil)
  2466.  
  2467. (autoload (quote emerge-files-remote) "emerge" nil nil nil)
  2468.  
  2469. (autoload (quote emerge-files-with-ancestor-remote) "emerge" nil nil nil)
  2470.  
  2471. ;;;***
  2472.  
  2473. ;;;### (autoloads (setenv) "env" "env.el" (11288 64005))
  2474. ;;; Generated autoloads from env.el
  2475.  
  2476. (autoload (quote setenv) "env" "\
  2477. Set the value of the environment variable named VARIABLE to VALUE.
  2478. VARIABLE should be a string.  VALUE is optional; if not provided or is
  2479. `nil', the environment variable VARIABLE will be removed.  
  2480. This function works by modifying `process-environment'." t nil)
  2481.  
  2482. ;;;***
  2483.  
  2484. ;;;### (autoloads (complete-tag select-tags-table tags-apropos list-tags tags-query-replace tags-search tags-loop-continue next-file find-tag-regexp find-tag-other-frame find-tag-other-window find-tag find-tag-noselect tags-table-files visit-tags-table) "etags" "etags.el" (11487 17108))
  2485. ;;; Generated autoloads from etags.el
  2486.  
  2487. (defvar tags-file-name nil "\
  2488. *File name of tags table.
  2489. To switch to a new tags table, setting this variable is sufficient.
  2490. If you set this variable, do not also set `tags-table-list'.
  2491. Use the `etags' program to make a tags table file.")
  2492. (put 'tags-file-name 'variable-interactive "fVisit tags table: ")
  2493.  
  2494. (defvar tags-table-list nil "\
  2495. *List of file names of tags tables to search.
  2496. An element that is a directory means the file \"TAGS\" in that directory.
  2497. To switch to a new list of tags tables, setting this variable is sufficient.
  2498. If you set this variable, do not also set `tags-file-name'.
  2499. Use the `etags' program to make a tags table file.")
  2500.  
  2501. (defvar find-tag-hook nil "\
  2502. *Hook to be run by \\[find-tag] after finding a tag.  See `run-hooks'.
  2503. The value in the buffer in which \\[find-tag] is done is used,
  2504. not the value in the buffer \\[find-tag] goes to.")
  2505.  
  2506. (defvar find-tag-default-function nil "\
  2507. *A function of no arguments used by \\[find-tag] to pick a default tag.
  2508. If nil, and the symbol that is the value of `major-mode'
  2509. has a `find-tag-default-function' property (see `put'), that is used.
  2510. Otherwise, `find-tag-default' is used.")
  2511.  
  2512. (defvar default-tags-table-function nil "\
  2513. *If non-nil, a function of no arguments to choose a default tags file
  2514. for a particular buffer.")
  2515.  
  2516. (autoload (quote visit-tags-table) "etags" "\
  2517. Tell tags commands to use tags table file FILE.
  2518. FILE should be the name of a file created with the `etags' program.
  2519. A directory name is ok too; it means file TAGS in that directory.
  2520.  
  2521. Normally \\[visit-tags-table] sets the global value of `tags-file-name'.
  2522. With a prefix arg, set the buffer-local value instead.
  2523. When you find a tag with \\[find-tag], the buffer it finds the tag
  2524. in is given a local value of this variable which is the name of the tags
  2525. file the tag was in." t nil)
  2526.  
  2527. (autoload (quote tags-table-files) "etags" "\
  2528. Return a list of files in the current tags table.
  2529. Assumes the tags table is the current buffer.
  2530. File names returned are absolute." nil nil)
  2531.  
  2532. (autoload (quote find-tag-noselect) "etags" "\
  2533. Find tag (in current tags table) whose name contains TAGNAME.
  2534. Returns the buffer containing the tag's definition and moves its point there,
  2535. but does not select the buffer.
  2536. The default for TAGNAME is the expression in the buffer near point.
  2537.  
  2538. If second arg NEXT-P is t (interactively, with prefix arg), search for
  2539. another tag that matches the last tagname or regexp used.  When there are
  2540. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  2541. is the atom `-' (interactively, with prefix arg that is a negative number
  2542. or just \\[negative-argument]), pop back to the previous tag gone to.
  2543.  
  2544. If third arg REGEXP-P is non-nil, treat TAGNAME as a regexp.
  2545.  
  2546. See documentation of variable `tags-file-name'." t nil)
  2547.  
  2548. (autoload (quote find-tag) "etags" "\
  2549. Find tag (in current tags table) whose name contains TAGNAME.
  2550. Select the buffer containing the tag's definition, and move point there.
  2551. The default for TAGNAME is the expression in the buffer around or before point.
  2552.  
  2553. If second arg NEXT-P is t (interactively, with prefix arg), search for
  2554. another tag that matches the last tagname or regexp used.  When there are
  2555. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  2556. is the atom `-' (interactively, with prefix arg that is a negative number
  2557. or just \\[negative-argument]), pop back to the previous tag gone to.
  2558.  
  2559. See documentation of variable `tags-file-name'." t nil)
  2560. (define-key esc-map "." 'find-tag)
  2561.  
  2562. (autoload (quote find-tag-other-window) "etags" "\
  2563. Find tag (in current tags table) whose name contains TAGNAME.
  2564. Select the buffer containing the tag's definition in another window, and
  2565. move point there.  The default for TAGNAME is the expression in the buffer
  2566. around or before point.
  2567.  
  2568. If second arg NEXT-P is t (interactively, with prefix arg), search for
  2569. another tag that matches the last tagname or regexp used.  When there are
  2570. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  2571. is negative (interactively, with prefix arg that is a negative number or
  2572. just \\[negative-argument]), pop back to the previous tag gone to.
  2573.  
  2574. See documentation of variable `tags-file-name'." t nil)
  2575. (define-key ctl-x-4-map "." 'find-tag-other-window)
  2576.  
  2577. (autoload (quote find-tag-other-frame) "etags" "\
  2578. Find tag (in current tags table) whose name contains TAGNAME.
  2579. Select the buffer containing the tag's definition in another frame, and
  2580. move point there.  The default for TAGNAME is the expression in the buffer
  2581. around or before point.
  2582.  
  2583. If second arg NEXT-P is t (interactively, with prefix arg), search for
  2584. another tag that matches the last tagname or regexp used.  When there are
  2585. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  2586. is negative (interactively, with prefix arg that is a negative number or
  2587. just \\[negative-argument]), pop back to the previous tag gone to.
  2588.  
  2589. See documentation of variable `tags-file-name'." t nil)
  2590. (define-key ctl-x-5-map "." 'find-tag-other-frame)
  2591.  
  2592. (autoload (quote find-tag-regexp) "etags" "\
  2593. Find tag (in current tags table) whose name matches REGEXP.
  2594. Select the buffer containing the tag's definition and move point there.
  2595.  
  2596. If second arg NEXT-P is t (interactively, with prefix arg), search for
  2597. another tag that matches the last tagname or regexp used.  When there are
  2598. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  2599. is negative (interactively, with prefix arg that is a negative number or
  2600. just \\[negative-argument]), pop back to the previous tag gone to.
  2601.  
  2602. If third arg OTHER-WINDOW is non-nil, select the buffer in another window.
  2603.  
  2604. See documentation of variable `tags-file-name'." t nil)
  2605.  
  2606. (autoload (quote next-file) "etags" "\
  2607. Select next file among files in current tags table.
  2608.  
  2609. A first argument of t (prefix arg, if interactive) initializes to the
  2610. beginning of the list of files in the tags table.  If the argument is
  2611. neither nil nor t, it is evalled to initialize the list of files.
  2612.  
  2613. Non-nil second argument NOVISIT means use a temporary buffer
  2614.  to save time and avoid uninteresting warnings.
  2615.  
  2616. Value is nil if the file was already visited;
  2617. if the file was newly read in, the value is the filename." t nil)
  2618.  
  2619. (autoload (quote tags-loop-continue) "etags" "\
  2620. Continue last \\[tags-search] or \\[tags-query-replace] command.
  2621. Used noninteractively with non-nil argument to begin such a command (the
  2622. argument is passed to `next-file', which see).
  2623. Two variables control the processing we do on each file:
  2624. the value of `tags-loop-scan' is a form to be executed on each file
  2625. to see if it is interesting (it returns non-nil if so)
  2626. and `tags-loop-operate' is a form to execute to operate on an interesting file
  2627. If the latter returns non-nil, we exit; otherwise we scan the next file." t nil)
  2628. (define-key esc-map "," 'tags-loop-continue)
  2629.  
  2630. (autoload (quote tags-search) "etags" "\
  2631. Search through all files listed in tags table for match for REGEXP.
  2632. Stops when a match is found.
  2633. To continue searching for next match, use command \\[tags-loop-continue].
  2634.  
  2635. See documentation of variable `tags-file-name'." t nil)
  2636.  
  2637. (autoload (quote tags-query-replace) "etags" "\
  2638. Query-replace-regexp FROM with TO through all files listed in tags table.
  2639. Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
  2640. If you exit (\\[keyboard-quit] or ESC), you can resume the query-replace
  2641. with the command \\[tags-loop-continue].
  2642.  
  2643. See documentation of variable `tags-file-name'." t nil)
  2644.  
  2645. (autoload (quote list-tags) "etags" "\
  2646. Display list of tags in file FILE.
  2647. FILE should not contain a directory specification." t nil)
  2648.  
  2649. (autoload (quote tags-apropos) "etags" "\
  2650. Display list of all tags in tags table REGEXP matches." t nil)
  2651.  
  2652. (autoload (quote select-tags-table) "etags" "\
  2653. Select a tags table file from a menu of those you have already used.
  2654. The list of tags tables to select from is stored in `tags-table-file-list';
  2655. see the doc of that variable if you want to add names to the list." t nil)
  2656.  
  2657. (autoload (quote complete-tag) "etags" "\
  2658. Perform tags completion on the text around point.
  2659. Completes to the set of names listed in the current tags table.  
  2660. The string to complete is chosen in the same way as the default
  2661. for \\[find-tag] (which see)." t nil)
  2662. (define-key esc-map "\t" 'complete-tag)
  2663.  
  2664. ;;;***
  2665.  
  2666. ;;;### (autoloads (find-grep-dired find-name-dired find-dired) "find-dired" "find-dired.el" (11269 25506))
  2667. ;;; Generated autoloads from find-dired.el
  2668.  
  2669. (defvar find-ls-option (if (eq system-type (quote berkeley-unix)) "-ls" "-exec ls -ldi {} \\;") "\
  2670. *Option to `find' to produce an `ls -l'-type listing.")
  2671.  
  2672. (defvar find-grep-options (if (eq system-type (quote berkeley-unix)) "-s" "-l") "\
  2673. *Option to grep to be as silent as possible.
  2674. On Berkeley systems, this is `-s', for others it seems impossible to
  2675. suppress all output, so `-l' is used to print nothing more than the
  2676. file name.")
  2677.  
  2678. (autoload (quote find-dired) "find-dired" "\
  2679. Run `find' and go into dired-mode on a buffer of the output.
  2680. The command run (after changing into DIR) is
  2681.  
  2682.     find . \\( ARGS \\) -ls" t nil)
  2683.  
  2684. (autoload (quote find-name-dired) "find-dired" "\
  2685. Search DIR recursively for files matching the globbing pattern PATTERN,
  2686. and run dired on those files.
  2687. PATTERN is a shell wildcard (not an Emacs regexp) and need not be quoted.
  2688. The command run (after changing into DIR) is
  2689.  
  2690.     find . -name 'PATTERN' -ls" t nil)
  2691.  
  2692. (autoload (quote find-grep-dired) "find-dired" "\
  2693. Find files in DIR containing a regexp ARG and start Dired on output.
  2694. The command run (after changing into DIR) is
  2695.  
  2696.     find . -exec grep -s ARG {} \\; -ls
  2697.  
  2698. Thus ARG can also contain additional grep options." t nil)
  2699.  
  2700. ;;;***
  2701.  
  2702. ;;;### (autoloads (enable-flow-control-on enable-flow-control) "flow-ctrl" "flow-ctrl.el" (11288 50957))
  2703. ;;; Generated autoloads from flow-ctrl.el
  2704.  
  2705. (autoload (quote enable-flow-control) "flow-ctrl" "\
  2706. Enable use of flow control; let user type C-s as C-\\ and C-q as C-^." t nil)
  2707.  
  2708. (autoload (quote enable-flow-control-on) "flow-ctrl" "\
  2709. Enable flow control if using one of a specified set of terminal types.
  2710. Use `(enable-flow-control-on \"vt100\" \"h19\")' to enable flow control
  2711. on VT-100 and H19 terminals.  When flow control is enabled,
  2712. you must type C-\\ to get the effect of a C-s, and type C-^
  2713. to get the effect of a C-q." nil nil)
  2714.  
  2715. ;;;***
  2716.  
  2717. ;;;### (autoloads (font-lock-mode) "font-lock" "font-lock.el" (11361 29125))
  2718. ;;; Generated autoloads from font-lock.el
  2719.  
  2720. (defvar font-lock-mode-hook nil "\
  2721. Function or functions to run on entry to Font Lock mode.")
  2722.  
  2723. (autoload (quote font-lock-mode) "font-lock" "\
  2724. Toggle Font Lock mode.
  2725. With arg, turn Font Lock mode on if and only if arg is positive.
  2726.  
  2727. When Font Lock mode is enabled, text is fontified as you type it:
  2728.  
  2729.  - comments are displayed in `font-lock-comment-face';
  2730.      (That is a variable whose value should be a face name.)
  2731.  - strings are displayed in `font-lock-string-face';
  2732.  - documentation strings are displayed in `font-lock-doc-string-face';
  2733.  - function and variable names in their defining forms are displayed
  2734.    in `font-lock-function-name-face';
  2735.  - and certain other expressions are displayed in other faces
  2736.    according to the value of the variable `font-lock-keywords'.
  2737.  
  2738. When you turn Font Lock mode on/off, the buffer is fontified/defontified.
  2739. To fontify a buffer without having newly typed text become fontified, you
  2740. can use \\[font-lock-fontify-buffer]." t nil)
  2741.  
  2742. ;;;***
  2743.  
  2744. ;;;### (autoloads (forms-find-file-other-window forms-find-file forms-mode) "forms" "forms.el" (11336 20307))
  2745. ;;; Generated autoloads from forms.el
  2746.  
  2747. (autoload (quote forms-mode) "forms" "\
  2748. Major mode to visit files in a field-structured manner using a form.
  2749.  
  2750. Commands (prefix with C-c if not in read-only mode):
  2751. \\{forms-mode-map}" t nil)
  2752.  
  2753. (autoload (quote forms-find-file) "forms" "\
  2754. Visit a file in Forms mode." t nil)
  2755.  
  2756. (autoload (quote forms-find-file-other-window) "forms" "\
  2757. Visit a file in Forms mode in other window." t nil)
  2758.  
  2759. ;;;***
  2760.  
  2761. ;;;### (autoloads (fortran-mode) "fortran" "fortran.el" (11285 51227))
  2762. ;;; Generated autoloads from fortran.el
  2763.  
  2764. (defvar fortran-tab-mode-default nil "\
  2765. *Default tabbing/carriage control style for empty files in Fortran mode.
  2766. A value of t specifies tab-digit style of continuation control.
  2767. A value of nil specifies that continuation lines are marked
  2768. with a character in column 6.")
  2769.  
  2770. (autoload (quote fortran-mode) "fortran" "\
  2771. Major mode for editing Fortran code.
  2772. \\[fortran-indent-line] indents the current Fortran line correctly. 
  2773. DO statements must not share a common CONTINUE.
  2774.  
  2775. Type ;? or ;\\[help-command] to display a list of built-in abbrevs for Fortran keywords.
  2776.  
  2777. Key definitions:
  2778. \\{fortran-mode-map}
  2779.  
  2780. Variables controlling indentation style and extra features:
  2781.  
  2782.  comment-start
  2783.     Normally nil in Fortran mode.  If you want to use comments
  2784.     starting with `!', set this to the string \"!\".
  2785.  fortran-do-indent
  2786.     Extra indentation within do blocks.  (default 3)
  2787.  fortran-if-indent
  2788.     Extra indentation within if blocks.  (default 3)
  2789.  fortran-structure-indent
  2790.     Extra indentation within structure, union and map blocks.  (default 3)
  2791.  fortran-continuation-indent
  2792.     Extra indentation applied to continuation statements.  (default 5)
  2793.  fortran-comment-line-extra-indent
  2794.     Amount of extra indentation for text within full-line comments. (default 0)
  2795.  fortran-comment-indent-style
  2796.     nil    means don't change indentation of text in full-line comments,
  2797.     fixed  means indent that text at `fortran-comment-line-extra-indent' beyond
  2798.            the value of `fortran-minimum-statement-indent-fixed' (for fixed
  2799.            format continuation style) or `fortran-minimum-statement-indent-tab'
  2800.            (for TAB format continuation style).
  2801.     relative  means indent at `fortran-comment-line-extra-indent' beyond the
  2802.            indentation for a line of code.
  2803.     (default 'fixed)
  2804.  fortran-comment-indent-char
  2805.     Single-character string to be inserted instead of space for
  2806.     full-line comment indentation.  (default \" \")
  2807.  fortran-minimum-statement-indent-fixed
  2808.     Minimum indentation for Fortran statements in fixed format mode. (def.6)
  2809.  fortran-minimum-statement-indent-tab
  2810.     Minimum indentation for Fortran statements in TAB format mode. (default 9)
  2811.  fortran-line-number-indent
  2812.     Maximum indentation for line numbers.  A line number will get
  2813.     less than this much indentation if necessary to avoid reaching
  2814.     column 5.  (default 1)
  2815.  fortran-check-all-num-for-matching-do
  2816.     Non-nil causes all numbered lines to be treated as possible \"continue\"
  2817.     statements.  (default nil)
  2818.  fortran-blink-matching-if 
  2819.     From a Fortran ENDIF statement, blink the matching IF statement.
  2820.     (default nil)
  2821.  fortran-continuation-string
  2822.     Single-character string to be inserted in column 5 of a continuation
  2823.     line.  (default \"$\")
  2824.  fortran-comment-region
  2825.     String inserted by \\[fortran-comment-region] at start of each line in 
  2826.     region.  (default \"c$$$\")
  2827.  fortran-electric-line-number
  2828.     Non-nil causes line number digits to be moved to the correct column 
  2829.     as typed.  (default t)
  2830.  fortran-break-before-delimiters
  2831.     Non-nil causes `fortran-do-auto-fill' breaks lines before delimiters.
  2832.     (default t)
  2833.  fortran-startup-message
  2834.     Set to nil to inhibit message first time Fortran mode is used.
  2835.  
  2836. Turning on Fortran mode calls the value of the variable `fortran-mode-hook'
  2837. with no args, if that value is non-nil." t nil)
  2838.  
  2839. ;;;***
  2840.  
  2841. ;;;### (autoloads (gnus) "gnus" "gnus.el" (11367 8636))
  2842. ;;; Generated autoloads from gnus.el
  2843.  
  2844. (autoload (quote gnus) "gnus" "\
  2845. Read network news.
  2846. If optional argument CONFIRM is non-nil, ask NNTP server." t nil)
  2847.  
  2848. ;;;***
  2849.  
  2850. ;;;### (autoloads (gnus-post-news) "gnuspost" "gnuspost.el" (11339 29602))
  2851. ;;; Generated autoloads from gnuspost.el
  2852.  
  2853. (fset (quote sendnews) (quote gnus-post-news))
  2854.  
  2855. (fset (quote postnews) (quote gnus-post-news))
  2856.  
  2857. (autoload (quote gnus-post-news) "gnuspost" "\
  2858. Begin editing a new USENET news article to be posted.
  2859. Type \\[describe-mode] once editing the article to get a list of commands." t nil)
  2860.  
  2861. ;;;***
  2862.  
  2863. ;;;### (autoloads (gomoku) "gomoku" "gomoku.el" (11356 11391))
  2864. ;;; Generated autoloads from gomoku.el
  2865.  
  2866. (autoload (quote gomoku) "gomoku" "\
  2867. Start a Gomoku game between you and Emacs.
  2868. If a game is in progress, this command allow you to resume it.
  2869. If optional arguments N and M are given, an N by M board is used.
  2870.  
  2871. You and Emacs play in turn by marking a free square.  You mark it with X
  2872. and Emacs marks it with O. The winner is the first to get five contiguous
  2873. marks horizontally, vertically or in diagonal.
  2874.  
  2875. You play by moving the cursor over the square you choose and hitting
  2876. \\<gomoku-mode-map>\\[gomoku-human-plays].
  2877. Use \\[describe-mode] for more info." t nil)
  2878.  
  2879. ;;;***
  2880.  
  2881. ;;;### (autoloads (set-gosmacs-bindings) "gosmacs" "gosmacs.el" (11190 10276))
  2882. ;;; Generated autoloads from gosmacs.el
  2883.  
  2884. (autoload (quote set-gosmacs-bindings) "gosmacs" "\
  2885. Rebind some keys globally to make GNU Emacs resemble Gosling Emacs.
  2886. Use \\[set-gnu-bindings] to restore previous global bindings." t nil)
  2887.  
  2888. ;;;***
  2889.  
  2890. ;;;### (autoloads (perldb xdb dbx sdb gdb) "gud" "gud.el" (11436 59090))
  2891. ;;; Generated autoloads from gud.el
  2892.  
  2893. (autoload (quote gdb) "gud" "\
  2894. Run gdb on program FILE in buffer *gud-FILE*.
  2895. The directory containing FILE becomes the initial working directory
  2896. and source-file directory for your debugger." t nil)
  2897.  
  2898. (autoload (quote sdb) "gud" "\
  2899. Run sdb on program FILE in buffer *gud-FILE*.
  2900. The directory containing FILE becomes the initial working directory
  2901. and source-file directory for your debugger." t nil)
  2902.  
  2903. (autoload (quote dbx) "gud" "\
  2904. Run dbx on program FILE in buffer *gud-FILE*.
  2905. The directory containing FILE becomes the initial working directory
  2906. and source-file directory for your debugger." t nil)
  2907.  
  2908. (autoload (quote xdb) "gud" "\
  2909. Run xdb on program FILE in buffer *gud-FILE*.
  2910. The directory containing FILE becomes the initial working directory
  2911. and source-file directory for your debugger.
  2912.  
  2913. You can set the variable 'gud-xdb-directories' to a list of program source
  2914. directories if your program contains sources from more than one directory." t nil)
  2915.  
  2916. (autoload (quote perldb) "gud" "\
  2917. Run perldb on program FILE in buffer *gud-FILE*.
  2918. The directory containing FILE becomes the initial working directory
  2919. and source-file directory for your debugger." t nil)
  2920.  
  2921. ;;;***
  2922.  
  2923. ;;;### (autoloads (hanoi) "hanoi" "hanoi.el" (11324 28709))
  2924. ;;; Generated autoloads from hanoi.el
  2925.  
  2926. (autoload (quote hanoi) "hanoi" "\
  2927. Towers of Hanoi diversion.  Argument is number of rings." t nil)
  2928.  
  2929. ;;;***
  2930.  
  2931. ;;;### (autoloads (Helper-help Helper-describe-bindings) "helper" "helper.el" (10941 42412))
  2932. ;;; Generated autoloads from helper.el
  2933.  
  2934. (autoload (quote Helper-describe-bindings) "helper" "\
  2935. Describe local key bindings of current mode." t nil)
  2936.  
  2937. (autoload (quote Helper-help) "helper" "\
  2938. Provide help for current mode." t nil)
  2939.  
  2940. ;;;***
  2941.  
  2942. ;;;### (autoloads (hexlify-buffer hexl-find-file hexl-mode) "hexl" "hexl.el" (11500 60646))
  2943. ;;; Generated autoloads from hexl.el
  2944.  
  2945. (autoload (quote hexl-mode) "hexl" "\
  2946. \\<hexl-mode-map>
  2947. A major mode for editing binary files in hex dump format.
  2948.  
  2949. This function automatically converts a buffer into the hexl format
  2950. using the function `hexlify-buffer'.
  2951.  
  2952. Each line in the buffer has an \"address\" (displayed in hexadecimal)
  2953. representing the offset into the file that the characters on this line
  2954. are at and 16 characters from the file (displayed as hexadecimal
  2955. values grouped every 16 bits) and as their ASCII values.
  2956.  
  2957. If any of the characters (displayed as ASCII characters) are
  2958. unprintable (control or meta characters) they will be replaced as
  2959. periods.
  2960.  
  2961. If `hexl-mode' is invoked with an argument the buffer is assumed to be
  2962. in hexl format.
  2963.  
  2964. A sample format:
  2965.  
  2966.   HEX ADDR: 0001 0203 0405 0607 0809 0a0b 0c0d 0e0f     ASCII-TEXT
  2967.   --------  ---- ---- ---- ---- ---- ---- ---- ----  ----------------
  2968.   00000000: 5468 6973 2069 7320 6865 786c 2d6d 6f64  This is hexl-mod
  2969.   00000010: 652e 2020 4561 6368 206c 696e 6520 7265  e.  Each line re
  2970.   00000020: 7072 6573 656e 7473 2031 3620 6279 7465  presents 16 byte
  2971.   00000030: 7320 6173 2068 6578 6164 6563 696d 616c  s as hexadecimal
  2972.   00000040: 2041 5343 4949 0a61 6e64 2070 7269 6e74   ASCII.and print
  2973.   00000050: 6162 6c65 2041 5343 4949 2063 6861 7261  able ASCII chara
  2974.   00000060: 6374 6572 732e 2020 416e 7920 636f 6e74  cters.  Any cont
  2975.   00000070: 726f 6c20 6f72 206e 6f6e 2d41 5343 4949  rol or non-ASCII
  2976.   00000080: 2063 6861 7261 6374 6572 730a 6172 6520   characters.are 
  2977.   00000090: 6469 7370 6c61 7965 6420 6173 2070 6572  displayed as per
  2978.   000000a0: 696f 6473 2069 6e20 7468 6520 7072 696e  iods in the prin
  2979.   000000b0: 7461 626c 6520 6368 6172 6163 7465 7220  table character 
  2980.   000000c0: 7265 6769 6f6e 2e0a                      region..
  2981.  
  2982. Movement is as simple as movement in a normal emacs text buffer.  Most
  2983. cursor movement bindings are the same (ie. Use \\[hexl-backward-char], \\[hexl-forward-char], \\[hexl-next-line], and \\[hexl-previous-line]
  2984. to move the cursor left, right, down, and up).
  2985.  
  2986. Advanced cursor movement commands (ala \\[hexl-beginning-of-line], \\[hexl-end-of-line], \\[hexl-beginning-of-buffer], and \\[hexl-end-of-buffer]) are
  2987. also supported.
  2988.  
  2989. There are several ways to change text in hexl mode:
  2990.  
  2991. ASCII characters (character between space (0x20) and tilde (0x7E)) are
  2992. bound to self-insert so you can simply type the character and it will
  2993. insert itself (actually overstrike) into the buffer.
  2994.  
  2995. \\[hexl-quoted-insert] followed by another keystroke allows you to insert the key even if
  2996. it isn't bound to self-insert.  An octal number can be supplied in place
  2997. of another key to insert the octal number's ASCII representation.
  2998.  
  2999. \\[hexl-insert-hex-char] will insert a given hexadecimal value (if it is between 0 and 0xFF)
  3000. into the buffer at the current point.
  3001.  
  3002. \\[hexl-insert-octal-char] will insert a given octal value (if it is between 0 and 0377)
  3003. into the buffer at the current point.
  3004.  
  3005. \\[hexl-insert-decimal-char] will insert a given decimal value (if it is between 0 and 255)
  3006. into the buffer at the current point.
  3007.  
  3008. \\[hexl-mode-exit] will exit hexl-mode.
  3009.  
  3010. Note: saving the file with any of the usual Emacs commands
  3011. will actually convert it back to binary format while saving.
  3012.  
  3013. You can use \\[hexl-find-file] to visit a file in hexl-mode.
  3014.  
  3015. \\[describe-bindings] for advanced commands." t nil)
  3016.  
  3017. (autoload (quote hexl-find-file) "hexl" "\
  3018. Edit file FILENAME in hexl-mode.
  3019. Switch to a buffer visiting file FILENAME, creating one in none exists." t nil)
  3020.  
  3021. (autoload (quote hexlify-buffer) "hexl" "\
  3022. Convert a binary buffer to hexl format" t nil)
  3023.  
  3024. ;;;***
  3025.  
  3026. ;;;### (autoloads (hide-ifdef-mode) "hideif" "hideif.el" (11285 51258))
  3027. ;;; Generated autoloads from hideif.el
  3028.  
  3029. (autoload (quote hide-ifdef-mode) "hideif" "\
  3030. Toggle Hide-Ifdef mode.  This is a minor mode, albeit a large one.
  3031. With ARG, turn Hide-Ifdef mode on iff arg is positive.
  3032. In Hide-Ifdef mode, code within #ifdef constructs that the C preprocessor
  3033. would eliminate may be hidden from view.  Several variables affect
  3034. how the hiding is done:
  3035.  
  3036. hide-ifdef-env
  3037.     An association list of defined and undefined symbols for the
  3038.     current buffer.  Initially, the global value of `hide-ifdef-env'
  3039.     is used.
  3040.  
  3041. hide-ifdef-define-alist
  3042.     An association list of defined symbol lists.  
  3043.         Use `hide-ifdef-set-define-alist' to save the current `hide-ifdef-env'
  3044.         and `hide-ifdef-use-define-alist' to set the current `hide-ifdef-env'
  3045.         from one of the lists in `hide-ifdef-define-alist'.
  3046.  
  3047. hide-ifdef-lines
  3048.     Set to non-nil to not show #if, #ifdef, #ifndef, #else, and
  3049.     #endif lines when hiding.
  3050.  
  3051. hide-ifdef-initially
  3052.     Indicates whether `hide-ifdefs' should be called when Hide-Ifdef mode
  3053.     is activated.
  3054.  
  3055. hide-ifdef-read-only
  3056.     Set to non-nil if you want to make buffers read only while hiding.
  3057.     After `show-ifdefs', read-only status is restored to previous value.
  3058.  
  3059. \\{hide-ifdef-mode-map}" t nil)
  3060.  
  3061. (defvar hide-ifdef-initially nil "\
  3062. *Non-nil if `hide-ifdefs' should be called when Hide-Ifdef mode
  3063. is first activated.")
  3064.  
  3065. (defvar hide-ifdef-read-only nil "\
  3066. *Set to non-nil if you want buffer to be read-only while hiding text.")
  3067.  
  3068. (defvar hide-ifdef-lines nil "\
  3069. *Set to t if you don't want to see the #ifX, #else, and #endif lines.")
  3070.  
  3071. ;;;***
  3072.  
  3073. ;;;### (autoloads (make-hippie-expand-function hippie-expand) "hippie-exp" "hippie-exp.el" (11336 59237))
  3074. ;;; Generated autoloads from hippie-exp.el
  3075.  
  3076. (defvar hippie-expand-try-functions-list (quote (try-complete-file-name try-expand-all-abbrevs try-expand-line try-expand-dabbrev try-expand-dabbrev-all-buffers try-complete-lisp-symbol)) "\
  3077. The list of expansion functions tried in order by `hippie-expand'.
  3078. To change the behavior of `hippie-expand', remove, change the order of,
  3079. or insert functions in this list.")
  3080.  
  3081. (defvar hippie-expand-verbose t "\
  3082. *Non-nil makes `hippie-expand' output which function it is trying.")
  3083.  
  3084. (defvar hippie-expand-max-buffers nil "\
  3085. *The maximum number of buffers (apart from the current) searched.
  3086. If nil, all buffers are searched.")
  3087.  
  3088. (autoload (quote hippie-expand) "hippie-exp" "\
  3089. Try to expand text before point, using multiple methods.
  3090. The expansion functions in `hippie-expand-try-functions-list' are
  3091. tried in order, until a possible expansion is found.  Repeated
  3092. application of `hippie-expand' inserts successively possible
  3093. expansions.  
  3094. With a positive numeric argument, jumps directly to the ARG next
  3095. function in this list.  With a negative argument or just \\[universal-argument], 
  3096. undoes the expansion." t nil)
  3097.  
  3098. (autoload (quote make-hippie-expand-function) "hippie-exp" "\
  3099. Construct a function similar to `hippie-expand'.
  3100. Make it use the expansion functions in TRY-LIST.  An optional second
  3101. argument VERBOSE non-nil makes the function verbose." nil (quote macro))
  3102.  
  3103. ;;;***
  3104.  
  3105. ;;;### (autoloads (inferior-lisp) "inf-lisp" "inf-lisp.el" (11294 14427))
  3106. ;;; Generated autoloads from inf-lisp.el
  3107.  
  3108. (defvar inferior-lisp-filter-regexp "\\`\\s *\\(:\\(\\w\\|\\s_\\)\\)?\\s *\\'" "\
  3109. *What not to save on inferior Lisp's input history.
  3110. Input matching this regexp is not saved on the input history in Inferior Lisp
  3111. mode.  Default is whitespace followed by 0 or 1 single-letter colon-keyword 
  3112. (as in :a, :c, etc.)")
  3113.  
  3114. (defvar inferior-lisp-program "lisp" "\
  3115. *Program name for invoking an inferior Lisp with for Inferior Lisp mode.")
  3116.  
  3117. (defvar inferior-lisp-load-command "(load \"%s\")\n" "\
  3118. *Format-string for building a Lisp expression to load a file.
  3119. This format string should use `%s' to substitute a file name
  3120. and should result in a Lisp expression that will command the inferior Lisp
  3121. to load that file.  The default works acceptably on most Lisps.
  3122. The string \"(progn (load \\\"%s\\\" :verbose nil :print t) (values))\\
  3123. \"
  3124. produces cosmetically superior output for this application,
  3125. but it works only in Common Lisp.")
  3126.  
  3127. (defvar inferior-lisp-prompt "^[^> ]*>+:? *" "\
  3128. Regexp to recognise prompts in the Inferior Lisp mode.
  3129. Defaults to \"^[^> ]*>+:? *\", which works pretty good for Lucid, kcl,
  3130. and franz.  This variable is used to initialize `comint-prompt-regexp' in the 
  3131. Inferior Lisp buffer.
  3132.  
  3133. More precise choices:
  3134. Lucid Common Lisp: \"^\\(>\\|\\(->\\)+\\) *\"
  3135. franz: \"^\\(->\\|<[0-9]*>:\\) *\"
  3136. kcl: \"^>+ *\"
  3137.  
  3138. This is a fine thing to set in your .emacs file.")
  3139.  
  3140. (defvar inferior-lisp-mode-hook (quote nil) "\
  3141. *Hook for customising Inferior Lisp mode.")
  3142.  
  3143. (autoload (quote inferior-lisp) "inf-lisp" "\
  3144. Run an inferior Lisp process, input and output via buffer `*inferior-lisp*'.
  3145. If there is a process already running in `*inferior-lisp*', just switch
  3146. to that buffer.
  3147. With argument, allows you to edit the command line (default is value
  3148. of `inferior-lisp-program').  Runs the hooks from
  3149. `inferior-lisp-mode-hook' (after the `comint-mode-hook' is run).
  3150. (Type \\[describe-mode] in the process buffer for a list of commands.)" t nil)
  3151.  
  3152. (defalias (quote run-lisp) (quote inferior-lisp))
  3153.  
  3154. ;;;***
  3155.  
  3156. ;;;### (autoloads (Info-goto-emacs-key-command-node Info-goto-emacs-command-node info-standalone info) "info" "info.el" (11362 48870))
  3157. ;;; Generated autoloads from info.el
  3158.  
  3159. (autoload (quote info) "info" "\
  3160. Enter Info, the documentation browser.
  3161. Optional argument FILE specifies the file to examine;
  3162. the default is the top-level directory of Info.
  3163.  
  3164. In interactive use, a prefix argument directs this command
  3165. to read a file name from the minibuffer." t nil)
  3166.  
  3167. (autoload (quote info-standalone) "info" "\
  3168. Run Emacs as a standalone Info reader.
  3169. Usage:  emacs -f info-standalone [filename]
  3170. In standalone mode, \\<Info-mode-map>\\[Info-exit] exits Emacs itself." nil nil)
  3171.  
  3172. (autoload (quote Info-goto-emacs-command-node) "info" "\
  3173. Go to the Info node in the Emacs manual for command COMMAND.
  3174. The command is found by looking up in Emacs manual's Command Index." t nil)
  3175.  
  3176. (autoload (quote Info-goto-emacs-key-command-node) "info" "\
  3177. Go to the Info node in the Emacs manual the command bound to KEY, a string.
  3178. Interactively, if the binding is execute-extended-command, a command is read.
  3179. The command is found by looking up in Emacs manual's Command Index." t nil)
  3180.  
  3181. ;;;***
  3182.  
  3183. ;;;### (autoloads (batch-info-validate Info-validate Info-split Info-tagify) "informat" "informat.el" (11136 13191))
  3184. ;;; Generated autoloads from informat.el
  3185.  
  3186. (autoload (quote Info-tagify) "informat" "\
  3187. Create or update Info-file tag table in current buffer." t nil)
  3188.  
  3189. (autoload (quote Info-split) "informat" "\
  3190. Split an info file into an indirect file plus bounded-size subfiles.
  3191. Each subfile will be up to 50,000 characters plus one node.
  3192.  
  3193. To use this command, first visit a large Info file that has a tag
  3194. table.  The buffer is modified into a (small) indirect info file which
  3195. should be saved in place of the original visited file.
  3196.  
  3197. The subfiles are written in the same directory the original file is
  3198. in, with names generated by appending `-' and a number to the original
  3199. file name.  The indirect file still functions as an Info file, but it
  3200. contains just the tag table and a directory of subfiles." t nil)
  3201.  
  3202. (autoload (quote Info-validate) "informat" "\
  3203. Check current buffer for validity as an Info file.
  3204. Check that every node pointer points to an existing node." t nil)
  3205.  
  3206. (autoload (quote batch-info-validate) "informat" "\
  3207. Runs `Info-validate' on the files remaining on the command line.
  3208. Must be used only with -batch, and kills Emacs on completion.
  3209. Each file will be processed even if an error occurred previously.
  3210. For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\"" nil nil)
  3211.  
  3212. ;;;***
  3213.  
  3214. ;;;### (autoloads (iso-accents-mode) "iso-acc" "iso-acc.el" (11467 25993))
  3215. ;;; Generated autoloads from iso-acc.el
  3216.  
  3217. (autoload (quote iso-accents-mode) "iso-acc" "\
  3218. Toggle a minor mode in which accents modify the following letter.
  3219. This permits easy insertion of accented characters according to ISO-8859-1.
  3220. When Iso-accents mode is enabled, accent character keys
  3221. (', \", ^ and ~) do not self-insert; instead, they modify the following
  3222. letter key so that it inserts an ISO accented letter.
  3223.  
  3224. With an argument, a positive argument enables ISO-accents mode, 
  3225. and a negative argument disables it." t nil)
  3226.  
  3227. ;;;***
  3228.  
  3229. ;;;### (autoloads (ispell-message ispell-complete-word-interior-frag ispell-complete-word ispell-region ispell-word ispell) "ispell" "ispell.el" (11485 39692))
  3230. ;;; Generated autoloads from ispell.el
  3231.  
  3232. (autoload (quote ispell) "ispell" "\
  3233. Run Ispell over current buffer's visited file.
  3234. First the file is scanned for misspelled words, then Ispell
  3235. enters a loop with the following commands for every misspelled word:
  3236.  
  3237. DIGIT    Near miss selector.  If the misspelled word is close to
  3238.     some words in the dictionary, they are offered as near misses.
  3239. r    Replace.  Replace the word with a string you type.  Each word
  3240.     of your new string is also checked.
  3241. i    Insert.  Insert this word in your private dictionary (kept in
  3242.     `$HOME/ispell.words').
  3243. a    Accept.  Accept this word for the rest of this editing session,
  3244.      but don't put it in your private dictionary.
  3245. l    Lookup.  Look for a word in the dictionary by fast binary
  3246.     search, or search for a regular expression in the dictionary
  3247.     using grep.
  3248. SPACE    Accept the word this time, but complain if it is seen again.
  3249. q, \\[keyboard-quit]    Leave the command loop.  You can come back later with \\[ispell-next]." t nil)
  3250.  
  3251. (defalias (quote ispell-buffer) (quote ispell))
  3252.  
  3253. (autoload (quote ispell-word) "ispell" "\
  3254. Check the spelling of the word under the cursor.
  3255. See the command `ispell' for more information.
  3256. With a prefix argument, resume handling of the previous Ispell command." t nil)
  3257.  
  3258. (define-key esc-map "$" (quote ispell-word))
  3259.  
  3260. (autoload (quote ispell-region) "ispell" "\
  3261. Check the spelling for all of the words in the region." t nil)
  3262.  
  3263. (autoload (quote ispell-complete-word) "ispell" "\
  3264. Complete word using letters at point to word beginning using `look'.
  3265. With optional argument INTERIOR-FRAG, word fragment at point is assumed to be
  3266. an interior word fragment in which case `ispell-have-new-look' should be t.
  3267. See also `ispell-look-dictionary' and `ispell-gnu-look-still-broken-p'." t nil)
  3268.  
  3269. (autoload (quote ispell-complete-word-interior-frag) "ispell" "\
  3270. Runs `ispell-complete-word' with a non-nil INTERIOR-FRAG.
  3271. A completion list is built for word fragment at point which is assumed to be
  3272. an interior word fragment.  `ispell-have-new-look' should be t." t nil)
  3273.  
  3274. (autoload (quote ispell-message) "ispell" "\
  3275. Check the spelling of a mail message or news post.
  3276. Don't check spelling of message headers or included messages.
  3277.  
  3278. To spell-check whenever a message is sent, include this line in .emacs:
  3279.    (setq news-inews-hook (setq mail-send-hook 'ispell-message))
  3280.  
  3281. Or you can bind the function to C-c i in gnus or mail with:
  3282.    (setq mail-mode-hook (setq news-reply-mode-hook
  3283.     (function (lambda () (local-set-key \"\\C-ci\" 'ispell-message)))))" t nil)
  3284.  
  3285. ;;;***
  3286.  
  3287. ;;;### (autoloads (ledit-from-lisp-mode ledit-mode) "ledit" "ledit.el" (11181 53296))
  3288. ;;; Generated autoloads from ledit.el
  3289.  
  3290. (defconst ledit-save-files t "\
  3291. *Non-nil means Ledit should save files before transferring to Lisp.")
  3292.  
  3293. (defconst ledit-go-to-lisp-string "%?lisp" "\
  3294. *Shell commands to execute to resume Lisp job.")
  3295.  
  3296. (defconst ledit-go-to-liszt-string "%?liszt" "\
  3297. *Shell commands to execute to resume Lisp compiler job.")
  3298.  
  3299. (autoload (quote ledit-mode) "ledit" "\
  3300. \\<ledit-mode-map>Major mode for editing text and stuffing it to a Lisp job.
  3301. Like Lisp mode, plus these special commands:
  3302.   \\[ledit-save-defun]    -- record defun at or after point
  3303.        for later transmission to Lisp job.
  3304.   \\[ledit-save-region] -- record region for later transmission to Lisp job.
  3305.   \\[ledit-go-to-lisp] -- transfer to Lisp job and transmit saved text.
  3306.   \\[ledit-go-to-liszt] -- transfer to Liszt (Lisp compiler) job
  3307.        and transmit saved text.
  3308. \\{ledit-mode-map}
  3309. To make Lisp mode automatically change to Ledit mode,
  3310. do (setq lisp-mode-hook 'ledit-from-lisp-mode)" t nil)
  3311.  
  3312. (autoload (quote ledit-from-lisp-mode) "ledit" nil nil nil)
  3313.  
  3314. ;;;***
  3315.  
  3316. ;;;### (autoloads (life) "life" "life.el" (11356 11391))
  3317. ;;; Generated autoloads from life.el
  3318.  
  3319. (autoload (quote life) "life" "\
  3320. Run Conway's Life simulation.
  3321. The starting pattern is randomly selected.  Prefix arg (optional first
  3322. arg non-nil from a program) is the number of seconds to sleep between
  3323. generations (this defaults to 1)." t nil)
  3324.  
  3325. ;;;***
  3326.  
  3327. ;;;### (autoloads (unload-feature) "loadhist" "loadhist.el" (11215 17597))
  3328. ;;; Generated autoloads from loadhist.el
  3329.  
  3330. (autoload (quote unload-feature) "loadhist" "\
  3331. Unload the library that provided FEATURE, restoring all its autoloads.
  3332. If the feature is required by any other loaded code, and optional FORCE
  3333. is nil, raise an error." t nil)
  3334.  
  3335. ;;;***
  3336.  
  3337. ;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer) "lpr" "lpr.el" (11359 12171))
  3338. ;;; Generated autoloads from lpr.el
  3339.  
  3340. (defvar lpr-switches nil "\
  3341. *List of strings to pass as extra switch args to lpr when it is invoked.")
  3342.  
  3343. (defvar lpr-command (if (memq system-type (quote (usg-unix-v dgux-unix hpux irix))) "lp" "lpr") "\
  3344. *Shell command for printing a file")
  3345.  
  3346. (autoload (quote lpr-buffer) "lpr" "\
  3347. Print buffer contents as with Unix command `lpr'.
  3348. `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
  3349.  
  3350. (autoload (quote print-buffer) "lpr" "\
  3351. Print buffer contents as with Unix command `lpr -p'.
  3352. `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
  3353.  
  3354. (autoload (quote lpr-region) "lpr" "\
  3355. Print region contents as with Unix command `lpr'.
  3356. `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
  3357.  
  3358. (autoload (quote print-region) "lpr" "\
  3359. Print region contents as with Unix command `lpr -p'.
  3360. `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
  3361.  
  3362. ;;;***
  3363.  
  3364. ;;;### (autoloads (phases-of-moon) "lunar" "lunar.el" (11367 8268))
  3365. ;;; Generated autoloads from lunar.el
  3366.  
  3367. (autoload (quote phases-of-moon) "lunar" "\
  3368. Display the quarters of the moon for last month, this month, and next month.
  3369. If called with an optional prefix argument, prompts for month and year.
  3370.  
  3371. This function is suitable for execution in a .emacs file." t nil)
  3372.  
  3373. ;;;***
  3374.  
  3375. ;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query insert-kbd-macro name-last-kbd-macro) "macros" "macros.el" (11351 17266))
  3376. ;;; Generated autoloads from macros.el
  3377.  
  3378. (autoload (quote name-last-kbd-macro) "macros" "\
  3379. Assign a name to the last keyboard macro defined.
  3380. Argument SYMBOL is the name to define.
  3381. The symbol's function definition becomes the keyboard macro string.
  3382. Such a \"function\" cannot be called from Lisp, but it is a valid editor command." t nil)
  3383.  
  3384. (autoload (quote insert-kbd-macro) "macros" "\
  3385. Insert in buffer the definition of kbd macro NAME, as Lisp code.
  3386. Optional second arg KEYS means also record the keys it is on
  3387. (this is the prefix argument, when calling interactively).
  3388.  
  3389. This Lisp code will, when executed, define the kbd macro with the same
  3390. definition it has now.  If you say to record the keys, the Lisp code
  3391. will also rebind those keys to the macro.  Only global key bindings
  3392. are recorded since executing this Lisp code always makes global
  3393. bindings.
  3394.  
  3395. To save a kbd macro, visit a file of Lisp code such as your `~/.emacs',
  3396. use this command, and then save the file." t nil)
  3397.  
  3398. (autoload (quote kbd-macro-query) "macros" "\
  3399. Query user during kbd macro execution.
  3400.   With prefix argument, enters recursive edit, reading keyboard
  3401. commands even within a kbd macro.  You can give different commands
  3402. each time the macro executes.
  3403.   Without prefix argument, asks whether to continue running the macro.
  3404. Your options are: \\<query-replace-map>
  3405. \\[act]    Finish this iteration normally and continue with the next.
  3406. \\[skip]    Skip the rest of this iteration, and start the next.
  3407. \\[exit]    Stop the macro entirely right now.
  3408. \\[recenter]    Redisplay the screen, then ask again.
  3409. \\[edit]    Enter recursive edit; ask again when you exit from that." t nil)
  3410.  
  3411. (autoload (quote apply-macro-to-region-lines) "macros" "\
  3412. For each complete line between point and mark, move to the beginning
  3413. of the line, and run the last keyboard macro.
  3414.  
  3415. When called from lisp, this function takes two arguments TOP and
  3416. BOTTOM, describing the current region.  TOP must be before BOTTOM.
  3417. The optional third argument MACRO specifies a keyboard macro to
  3418. execute.
  3419.  
  3420. This is useful for quoting or unquoting included text, adding and
  3421. removing comments, or producing tables where the entries are regular.
  3422.  
  3423. For example, in Usenet articles, sections of text quoted from another
  3424. author are indented, or have each line start with `>'.  To quote a
  3425. section of text, define a keyboard macro which inserts `>', put point
  3426. and mark at opposite ends of the quoted section, and use
  3427. `\\[apply-macro-to-region-lines]' to mark the entire section.
  3428.  
  3429. Suppose you wanted to build a keyword table in C where each entry
  3430. looked like this:
  3431.  
  3432.     { \"foo\", foo_data, foo_function }, 
  3433.     { \"bar\", bar_data, bar_function },
  3434.     { \"baz\", baz_data, baz_function },
  3435.  
  3436. You could enter the names in this format:
  3437.  
  3438.     foo
  3439.     bar
  3440.     baz
  3441.  
  3442. and write a macro to massage a word into a table entry:
  3443.  
  3444.     \\C-x (
  3445.        \\M-d { \"\\C-y\", \\C-y_data, \\C-y_function },
  3446.     \\C-x )
  3447.  
  3448. and then select the region of un-tablified names and use
  3449. `\\[apply-macro-to-region-lines]' to build the table from the names.
  3450. " t nil)
  3451.  
  3452. (define-key ctl-x-map "q" (quote kbd-macro-query))
  3453.  
  3454. ;;;***
  3455.  
  3456. ;;;### (autoloads nil "mail-utils" "mail-utils.el" (11323 3305))
  3457. ;;; Generated autoloads from mail-utils.el
  3458.  
  3459. (defvar mail-use-rfc822 nil "\
  3460. *If non-nil, use a full, hairy RFC822 parser on mail addresses.
  3461. Otherwise, (the default) use a smaller, somewhat faster, and
  3462. often correct parser.")
  3463.  
  3464. ;;;***
  3465.  
  3466. ;;;### (autoloads (define-mail-abbrev build-mail-abbrevs mail-abbrevs-setup) "mailabbrev" "mailabbrev.el" (11349 45422))
  3467. ;;; Generated autoloads from mailabbrev.el
  3468.  
  3469. (autoload (quote mail-abbrevs-setup) "mailabbrev" nil nil nil)
  3470.  
  3471. (autoload (quote build-mail-abbrevs) "mailabbrev" "\
  3472. Read mail aliases from `~/.mailrc' file and set `mail-abbrevs'." nil nil)
  3473.  
  3474. (autoload (quote define-mail-abbrev) "mailabbrev" "\
  3475. Define NAME as a mail-abbrev that translates to DEFINITION.
  3476. If DEFINITION contains multiple addresses, separate them with commas." t nil)
  3477.  
  3478. ;;;***
  3479.  
  3480. ;;;### (autoloads (define-mail-alias) "mailalias" "mailalias.el" (11294 13866))
  3481. ;;; Generated autoloads from mailalias.el
  3482.  
  3483. (autoload (quote define-mail-alias) "mailalias" "\
  3484. Define NAME as a mail alias that translates to DEFINITION.
  3485. This means that sending a message to NAME will actually send to DEFINITION.
  3486. DEFINITION can be one or more mail addresses separated by commas." t nil)
  3487.  
  3488. ;;;***
  3489.  
  3490. ;;;### (autoloads (makefile-mode) "makefile" "makefile.el" (11285 53103))
  3491. ;;; Generated autoloads from makefile.el
  3492.  
  3493. (autoload (quote makefile-mode) "makefile" "\
  3494. Major mode for editing Makefiles.
  3495. Calling this function invokes the function(s) \"makefile-mode-hook\" before
  3496. doing anything else.
  3497.  
  3498. \\{makefile-mode-map}
  3499.  
  3500. In the browser, use the following keys:
  3501.  
  3502. \\{makefile-browser-map}
  3503.  
  3504. makefile-mode can be configured by modifying the following
  3505. variables:
  3506.  
  3507. makefile-mode-name:
  3508.     The \"pretty name\" of makefile-mode, as it
  3509.     appears in the modeline.
  3510.  
  3511. makefile-browser-buffer-name:
  3512.     Name of the macro- and target browser buffer.
  3513.  
  3514. makefile-target-colon:
  3515.     The string that gets appended to all target names
  3516.     inserted by makefile-insert-target.
  3517.     \":\" or \"::\" are quite common values.
  3518.  
  3519. makefile-macro-assign:
  3520.    The string that gets appended to all macro names
  3521.    inserted by makefile-insert-macro.
  3522.    The normal value should be \" = \", since this is what
  3523.    standard make expects. However, newer makes such as dmake
  3524.    allow a larger variety of different macro assignments, so you
  3525.    might prefer to use \" += \" or \" := \" .
  3526.  
  3527. makefile-tab-after-target-colon:
  3528.    If you want a TAB (instead of a space) to be appended after the
  3529.    target colon, then set this to a non-nil value.
  3530.  
  3531. makefile-browser-leftmost-column:
  3532.    Number of blanks to the left of the browser selection mark.
  3533.  
  3534. makefile-browser-cursor-column:
  3535.    Column in which the cursor is positioned when it moves
  3536.    up or down in the browser.
  3537.  
  3538. makefile-browser-selected-mark:
  3539.    String used to mark selected entries in the browser.
  3540.  
  3541. makefile-browser-unselected-mark:
  3542.    String used to mark unselected entries in the browser.
  3543.  
  3544. makefile-browser-auto-advance-after-selection-p:
  3545.    If this variable is set to a non-nil value the cursor
  3546.    will automagically advance to the next line after an item
  3547.    has been selected in the browser.
  3548.  
  3549. makefile-pickup-everything-picks-up-filenames-p:
  3550.    If this variable is set to a non-nil value then
  3551.    makefile-pickup-everything also picks up filenames as targets
  3552.    (i.e. it calls makefile-find-filenames-as-targets), otherwise
  3553.    filenames are omitted.
  3554.  
  3555. makefile-cleanup-continuations-p:
  3556.    If this variable is set to a non-nil value then makefile-mode
  3557.    will assure that no line in the file ends with a backslash
  3558.    (the continuation character) followed by any whitespace.
  3559.    This is done by silently removing the trailing whitespace, leaving
  3560.    the backslash itself intact.
  3561.    IMPORTANT: Please note that enabling this option causes makefile-mode
  3562.    to MODIFY A FILE WITHOUT YOUR CONFIRMATION when 'it seems necessary'.
  3563.  
  3564. makefile-browser-hook:
  3565.    A function or list of functions to be called just before the
  3566.    browser is entered. This is executed in the makefile buffer.
  3567.  
  3568. makefile-special-targets-list:
  3569.    List of special targets. You will be offered to complete
  3570.    on one of those in the minibuffer whenever you enter a \".\"
  3571.    at the beginning of a line in makefile-mode." t nil)
  3572.  
  3573. ;;;***
  3574.  
  3575. ;;;### (autoloads (make-command-summary) "makesum" "makesum.el" (11181 53304))
  3576. ;;; Generated autoloads from makesum.el
  3577.  
  3578. (autoload (quote make-command-summary) "makesum" "\
  3579. Make a summary of current key bindings in the buffer *Summary*.
  3580. Previous contents of that buffer are killed first." t nil)
  3581.  
  3582. ;;;***
  3583.  
  3584. ;;;### (autoloads (manual-entry) "man" "man.el" (11358 46030))
  3585. ;;; Generated autoloads from man.el
  3586.  
  3587. (defalias (quote man) (quote manual-entry))
  3588.  
  3589. (autoload (quote manual-entry) "man" "\
  3590. Get a Un*x manual page and put it in a buffer.
  3591. This command is the top-level command in the man package.  It runs a Un*x
  3592. command to retrieve and clean a manpage in the background and places the
  3593. results in a Man mode (manpage browsing) buffer.  See variable
  3594. `Man-notify' for what happens when the buffer is ready.
  3595. Universal argument ARG, is passed to `Man-getpage-in-background'." t nil)
  3596.  
  3597. ;;;***
  3598.  
  3599. ;;;### (autoloads (map-y-or-n-p) "map-ynp" "map-ynp.el" (11449 65482))
  3600. ;;; Generated autoloads from map-ynp.el
  3601.  
  3602. (autoload (quote map-y-or-n-p) "map-ynp" "\
  3603. Ask a series of boolean questions.
  3604. Takes args PROMPTER ACTOR LIST, and optional args HELP and ACTION-ALIST.
  3605.  
  3606. LIST is a list of objects, or a function of no arguments to return the next
  3607. object or nil.
  3608.  
  3609. If PROMPTER is a string, the prompt is (format PROMPTER OBJECT).  If not
  3610. a string, PROMPTER is a function of one arg (an object from LIST), which
  3611. returns a string to be used as the prompt for that object.  If the return
  3612. value is not a string, it is eval'd to get the answer; it may be nil to
  3613. ignore the object, t to act on the object without asking the user, or a
  3614. form to do a more complex prompt.
  3615.  
  3616. ACTOR is a function of one arg (an object from LIST),
  3617. which gets called with each object that the user answers `yes' for.
  3618.  
  3619. If HELP is given, it is a list (OBJECT OBJECTS ACTION),
  3620. where OBJECT is a string giving the singular noun for an elt of LIST;
  3621. OBJECTS is the plural noun for elts of LIST, and ACTION is a transitive
  3622. verb describing ACTOR.  The default is (\"object\" \"objects\" \"act on\").
  3623.  
  3624. At the prompts, the user may enter y, Y, or SPC to act on that object;
  3625. n, N, or DEL to skip that object; ! to act on all following objects;
  3626. ESC or q to exit (skip all following objects); . (period) to act on the
  3627. current object and then exit; or \\[help-command] to get help.
  3628.  
  3629. If ACTION-ALIST is given, it is an alist (KEY FUNCTION HELP) of extra keys
  3630. that will be accepted.  KEY is a character; FUNCTION is a function of one
  3631. arg (an object from LIST); HELP is a string.  When the user hits KEY,
  3632. FUNCTION is called.  If it returns non-nil, the object is considered
  3633. \"acted upon\", and the next object from LIST is processed.  If it returns
  3634. nil, the prompt is repeated for the same object.
  3635.  
  3636. Final optional argument NO-CURSOR-IN-ECHO-AREA non-nil says not to set
  3637. `cursor-in-echo-area' while prompting.
  3638.  
  3639. This function uses `query-replace-map' to define the standard responses,
  3640. but not all of the responses which `query-replace' understands
  3641. are meaningful here.
  3642.  
  3643. Returns the number of actions taken." nil nil)
  3644.  
  3645. ;;;***
  3646.  
  3647. ;;;### (autoloads (mh-smail mh-rmail) "mh-e" "mh-e.el" (11365 38303))
  3648. ;;; Generated autoloads from mh-e.el
  3649.  
  3650. (autoload (quote mh-rmail) "mh-e" "\
  3651. Inc(orporate) new mail (no arg) or scan a MH mail box (arg given).
  3652. This front end uses the MH mail system, which uses different conventions
  3653. from the usual mail system." t nil)
  3654.  
  3655. (autoload (quote mh-smail) "mh-e" "\
  3656. Compose and send mail with the MH mail system." t nil)
  3657.  
  3658. ;;;***
  3659.  
  3660. ;;;### (autoloads (convert-mocklisp-buffer) "mlconvert" "mlconvert.el" (11339 6975))
  3661. ;;; Generated autoloads from mlconvert.el
  3662.  
  3663. (autoload (quote convert-mocklisp-buffer) "mlconvert" "\
  3664. Convert buffer of Mocklisp code to real Lisp that GNU Emacs can run." t nil)
  3665.  
  3666. ;;;***
  3667.  
  3668. ;;;### (autoloads (modula-2-mode) "modula2" "modula2.el" (11181 53306))
  3669. ;;; Generated autoloads from modula2.el
  3670.  
  3671. (autoload (quote modula-2-mode) "modula2" "\
  3672. This is a mode intended to support program development in Modula-2.
  3673. All control constructs of Modula-2 can be reached by typing C-c
  3674. followed by the first character of the construct.
  3675. \\<m2-mode-map>
  3676.   \\[m2-begin] begin         \\[m2-case] case
  3677.   \\[m2-definition] definition    \\[m2-else] else
  3678.   \\[m2-for] for           \\[m2-header] header
  3679.   \\[m2-if] if            \\[m2-module] module
  3680.   \\[m2-loop] loop          \\[m2-or] or
  3681.   \\[m2-procedure] procedure     Control-c Control-w with
  3682.   \\[m2-record] record        \\[m2-stdio] stdio
  3683.   \\[m2-type] type          \\[m2-until] until
  3684.   \\[m2-var] var           \\[m2-while] while
  3685.   \\[m2-export] export        \\[m2-import] import
  3686.   \\[m2-begin-comment] begin-comment \\[m2-end-comment] end-comment
  3687.   \\[suspend-emacs] suspend Emacs     \\[m2-toggle] toggle
  3688.   \\[m2-compile] compile           \\[m2-next-error] next-error
  3689.   \\[m2-link] link
  3690.  
  3691.    `m2-indent' controls the number of spaces for each indentation.
  3692.    `m2-compile-command' holds the command to compile a Modula-2 program.
  3693.    `m2-link-command' holds the command to link a Modula-2 program." t nil)
  3694.  
  3695. ;;;***
  3696.  
  3697. ;;;### (autoloads (mpuz) "mpuz" "mpuz.el" (11356 11391))
  3698. ;;; Generated autoloads from mpuz.el
  3699.  
  3700. (autoload (quote mpuz) "mpuz" "\
  3701. Multiplication puzzle with GNU Emacs." t nil)
  3702.  
  3703. ;;;***
  3704.  
  3705. ;;;### (autoloads (disable-command enable-command disabled-command-hook) "novice" "novice.el" (11261 24403))
  3706. ;;; Generated autoloads from novice.el
  3707.  
  3708. (setq disabled-command-hook (quote disabled-command-hook))
  3709.  
  3710. (autoload (quote disabled-command-hook) "novice" nil nil nil)
  3711.  
  3712. (autoload (quote enable-command) "novice" "\
  3713. Allow COMMAND to be executed without special confirmation from now on.
  3714. The user's .emacs file is altered so that this will apply
  3715. to future sessions." t nil)
  3716.  
  3717. (autoload (quote disable-command) "novice" "\
  3718. Require special confirmation to execute COMMAND from now on.
  3719. The user's .emacs file is altered so that this will apply
  3720. to future sessions." t nil)
  3721.  
  3722. ;;;***
  3723.  
  3724. ;;;### (autoloads (nroff-mode) "nroff-mode" "nroff-mode.el" (11267 60509))
  3725. ;;; Generated autoloads from nroff-mode.el
  3726.  
  3727. (autoload (quote nroff-mode) "nroff-mode" "\
  3728. Major mode for editing text intended for nroff to format.
  3729. \\{nroff-mode-map}
  3730. Turning on Nroff mode runs `text-mode-hook', then `nroff-mode-hook'.
  3731. Also, try `nroff-electric-mode', for automatically inserting
  3732. closing requests for requests that are used in matched pairs." t nil)
  3733.  
  3734. ;;;***
  3735.  
  3736. ;;;### (autoloads (edit-options list-options) "options" "options.el" (11181 53232))
  3737. ;;; Generated autoloads from options.el
  3738.  
  3739. (autoload (quote list-options) "options" "\
  3740. Display a list of Emacs user options, with values and documentation." t nil)
  3741.  
  3742. (autoload (quote edit-options) "options" "\
  3743. Edit a list of Emacs user option values.
  3744. Selects a buffer containing such a list,
  3745. in which there are commands to set the option values.
  3746. Type \\[describe-mode] in that buffer for a list of commands." t nil)
  3747.  
  3748. ;;;***
  3749.  
  3750. ;;;### (autoloads (outline-minor-mode outline-mode) "outline" "outline.el" (11340 12742))
  3751. ;;; Generated autoloads from outline.el
  3752.  
  3753. (autoload (quote outline-mode) "outline" "\
  3754. Set major mode for editing outlines with selective display.
  3755. Headings are lines which start with asterisks: one for major headings,
  3756. two for subheadings, etc.  Lines not starting with asterisks are body lines. 
  3757.  
  3758. Body text or subheadings under a heading can be made temporarily
  3759. invisible, or visible again.  Invisible lines are attached to the end 
  3760. of the heading, so they move with it, if the line is killed and yanked
  3761. back.  A heading with text hidden under it is marked with an ellipsis (...).
  3762.  
  3763. Commands:\\<outline-mode-map>
  3764. \\[outline-next-visible-heading]   outline-next-visible-heading      move by visible headings
  3765. \\[outline-previous-visible-heading]   outline-previous-visible-heading
  3766. \\[outline-forward-same-level]   outline-forward-same-level        similar but skip subheadings
  3767. \\[outline-backward-same-level]   outline-backward-same-level
  3768. \\[outline-up-heading]   outline-up-heading            move from subheading to heading
  3769.  
  3770. M-x hide-body    make all text invisible (not headings).
  3771. M-x show-all    make everything in buffer visible.
  3772.  
  3773. The remaining commands are used when point is on a heading line.
  3774. They apply to some of the body or subheadings of that heading.
  3775. \\[hide-subtree]   hide-subtree    make body and subheadings invisible.
  3776. \\[show-subtree]   show-subtree    make body and subheadings visible.
  3777. \\[show-children]   show-children    make direct subheadings visible.
  3778.          No effect on body, or subheadings 2 or more levels down.
  3779.          With arg N, affects subheadings N levels down.
  3780. M-x hide-entry       make immediately following body invisible.
  3781. M-x show-entry       make it visible.
  3782. M-x hide-leaves       make body under heading and under its subheadings invisible.
  3783.              The subheadings remain visible.
  3784. M-x show-branches  make all subheadings at all levels visible.
  3785.  
  3786. The variable `outline-regexp' can be changed to control what is a heading.
  3787. A line is a heading if `outline-regexp' matches something at the
  3788. beginning of the line.  The longer the match, the deeper the level.
  3789.  
  3790. Turning on outline mode calls the value of `text-mode-hook' and then of
  3791. `outline-mode-hook', if they are non-nil." t nil)
  3792.  
  3793. (autoload (quote outline-minor-mode) "outline" "\
  3794. Toggle Outline minor mode.
  3795. With arg, turn Outline minor mode on if arg is positive, off otherwise.
  3796. See the command `outline-mode' for more information on this mode." t nil)
  3797.  
  3798. ;;;***
  3799.  
  3800. ;;;### (autoloads (perl-mode) "perl-mode" "perl-mode.el" (11360 25587))
  3801. ;;; Generated autoloads from perl-mode.el
  3802.  
  3803. (autoload (quote perl-mode) "perl-mode" "\
  3804. Major mode for editing Perl code.
  3805. Expression and list commands understand all Perl brackets.
  3806. Tab indents for Perl code.
  3807. Comments are delimited with # ... \\n.
  3808. Paragraphs are separated by blank lines only.
  3809. Delete converts tabs to spaces as it moves back.
  3810. \\{perl-mode-map}
  3811. Variables controlling indentation style:
  3812.  perl-tab-always-indent
  3813.     Non-nil means TAB in Perl mode should always indent the current line,
  3814.     regardless of where in the line point is when the TAB command is used.
  3815.  perl-tab-to-comment
  3816.     Non-nil means that for lines which don't need indenting, TAB will
  3817.     either delete an empty comment, indent an existing comment, move 
  3818.     to end-of-line, or if at end-of-line already, create a new comment.
  3819.  perl-nochange
  3820.     Lines starting with this regular expression will not be auto-indented.
  3821.  perl-indent-level
  3822.     Indentation of Perl statements within surrounding block.
  3823.     The surrounding block's indentation is the indentation
  3824.     of the line on which the open-brace appears.
  3825.  perl-continued-statement-offset
  3826.     Extra indentation given to a substatement, such as the
  3827.     then-clause of an if or body of a while.
  3828.  perl-continued-brace-offset
  3829.     Extra indentation given to a brace that starts a substatement.
  3830.     This is in addition to perl-continued-statement-offset.
  3831.  perl-brace-offset
  3832.     Extra indentation for line if it starts with an open brace.
  3833.  perl-brace-imaginary-offset
  3834.     An open brace following other text is treated as if it were
  3835.     this far to the right of the start of its line.
  3836.  perl-label-offset
  3837.     Extra indentation for line that is a label.
  3838.  
  3839. Various indentation styles:       K&R  BSD  BLK  GNU  LW
  3840.   perl-indent-level                5    8    0    2    4
  3841.   perl-continued-statement-offset  5    8    4    2    4
  3842.   perl-continued-brace-offset      0    0    0    0   -4
  3843.   perl-brace-offset               -5   -8    0    0    0
  3844.   perl-brace-imaginary-offset      0    0    4    0    0
  3845.   perl-label-offset               -5   -8   -2   -2   -2
  3846.  
  3847. Turning on Perl mode calls the value of the variable perl-mode-hook with no 
  3848. args, if that value is non-nil." t nil)
  3849.  
  3850. ;;;***
  3851.  
  3852. ;;;### (autoloads (picture-mode) "picture" "picture.el" (11292 51488))
  3853. ;;; Generated autoloads from picture.el
  3854.  
  3855. (autoload (quote picture-mode) "picture" "\
  3856. Switch to Picture mode, in which a quarter-plane screen model is used.
  3857. Printing characters replace instead of inserting themselves with motion
  3858. afterwards settable by these commands:
  3859.   C-c <      Move left after insertion.
  3860.   C-c >      Move right after insertion.
  3861.   C-c ^      Move up after insertion.
  3862.   C-c .      Move down after insertion.
  3863.   C-c `      Move northwest (nw) after insertion.
  3864.   C-c '      Move northeast (ne) after insertion.
  3865.   C-c /      Move southwest (sw) after insertion.
  3866.   C-c \\   Move southeast (se) after insertion.
  3867. The current direction is displayed in the mode line.  The initial
  3868. direction is right.  Whitespace is inserted and tabs are changed to
  3869. spaces when required by movement.  You can move around in the buffer
  3870. with these commands:
  3871.   \\[picture-move-down]      Move vertically to SAME column in previous line.
  3872.   \\[picture-move-up]      Move vertically to SAME column in next line.
  3873.   \\[picture-end-of-line]      Move to column following last non-whitespace character.
  3874.   \\[picture-forward-column]      Move right inserting spaces if required.
  3875.   \\[picture-backward-column]      Move left changing tabs to spaces if required.
  3876.   C-c C-f Move in direction of current picture motion.
  3877.   C-c C-b Move in opposite direction of current picture motion.
  3878.   Return  Move to beginning of next line.
  3879. You can edit tabular text with these commands:
  3880.   M-Tab      Move to column beneath (or at) next interesting character.
  3881.         `Indents' relative to a previous line.
  3882.   Tab      Move to next stop in tab stop list.
  3883.   C-c Tab Set tab stops according to context of this line.
  3884.         With ARG resets tab stops to default (global) value.
  3885.         See also documentation of variable    picture-tab-chars
  3886.         which defines \"interesting character\".  You can manually
  3887.         change the tab stop list with command \\[edit-tab-stops].
  3888. You can manipulate text with these commands:
  3889.   C-d      Clear (replace) ARG columns after point without moving.
  3890.   C-c C-d Delete char at point - the command normally assigned to C-d.
  3891.   \\[picture-backward-clear-column]  Clear (replace) ARG columns before point, moving back over them.
  3892.   \\[picture-clear-line]      Clear ARG lines, advancing over them.     The cleared
  3893.         text is saved in the kill ring.
  3894.   \\[picture-open-line]      Open blank line(s) beneath current line.
  3895. You can manipulate rectangles with these commands:
  3896.   C-c C-k Clear (or kill) a rectangle and save it.
  3897.   C-c C-w Like C-c C-k except rectangle is saved in named register.
  3898.   C-c C-y Overlay (or insert) currently saved rectangle at point.
  3899.   C-c C-x Like C-c C-y except rectangle is taken from named register.
  3900.   \\[copy-rectangle-to-register]   Copies a rectangle to a register.
  3901.   \\[advertised-undo]   Can undo effects of rectangle overlay commands
  3902.         commands if invoked soon enough.
  3903. You can return to the previous mode with:
  3904.   C-c C-c Which also strips trailing whitespace from every line.
  3905.         Stripping is suppressed by supplying an argument.
  3906.  
  3907. Entry to this mode calls the value of  picture-mode-hook  if non-nil.
  3908.  
  3909. Note that Picture mode commands will work outside of Picture mode, but
  3910. they are not defaultly assigned to keys." t nil)
  3911.  
  3912. (defalias (quote edit-picture) (quote picture-mode))
  3913.  
  3914. ;;;***
  3915.  
  3916. ;;;### (autoloads (run-prolog prolog-mode) "prolog" "prolog.el" (11181 53308))
  3917. ;;; Generated autoloads from prolog.el
  3918.  
  3919. (autoload (quote prolog-mode) "prolog" "\
  3920. Major mode for editing Prolog code for Prologs.
  3921. Blank lines and `%%...' separate paragraphs.  `%'s start comments.
  3922. Commands:
  3923. \\{prolog-mode-map}
  3924. Entry to this mode calls the value of `prolog-mode-hook'
  3925. if that value is non-nil." t nil)
  3926.  
  3927. (autoload (quote run-prolog) "prolog" "\
  3928. Run an inferior Prolog process, input and output via buffer *prolog*." t nil)
  3929.  
  3930. ;;;***
  3931.  
  3932. ;;;### (autoloads (clear-rectangle string-rectangle open-rectangle insert-rectangle yank-rectangle kill-rectangle extract-rectangle delete-extract-rectangle delete-rectangle) "rect" "rect.el" (11237 13138))
  3933. ;;; Generated autoloads from rect.el
  3934.  
  3935. (autoload (quote delete-rectangle) "rect" "\
  3936. Delete (don't save) text in rectangle with point and mark as corners.
  3937. The same range of columns is deleted in each line starting with the line
  3938. where the region begins and ending with the line where the region ends." t nil)
  3939.  
  3940. (autoload (quote delete-extract-rectangle) "rect" "\
  3941. Delete contents of rectangle and return it as a list of strings.
  3942. Arguments START and END are the corners of the rectangle.
  3943. The value is list of strings, one for each line of the rectangle." nil nil)
  3944.  
  3945. (autoload (quote extract-rectangle) "rect" "\
  3946. Return contents of rectangle with corners at START and END.
  3947. Value is list of strings, one for each line of the rectangle." nil nil)
  3948.  
  3949. (autoload (quote kill-rectangle) "rect" "\
  3950. Delete rectangle with corners at point and mark; save as last killed one.
  3951. Calling from program, supply two args START and END, buffer positions.
  3952. But in programs you might prefer to use `delete-extract-rectangle'." t nil)
  3953.  
  3954. (autoload (quote yank-rectangle) "rect" "\
  3955. Yank the last killed rectangle with upper left corner at point." t nil)
  3956.  
  3957. (autoload (quote insert-rectangle) "rect" "\
  3958. Insert text of RECTANGLE with upper left corner at point.
  3959. RECTANGLE's first line is inserted at point, its second
  3960. line is inserted at a point vertically under point, etc.
  3961. RECTANGLE should be a list of strings.
  3962. After this command, the mark is at the upper left corner
  3963. and point is at the lower right corner." nil nil)
  3964.  
  3965. (autoload (quote open-rectangle) "rect" "\
  3966. Blank out rectangle with corners at point and mark, shifting text right.
  3967. The text previously in the region is not overwritten by the blanks,
  3968. but instead winds up to the right of the rectangle." t nil)
  3969.  
  3970. (autoload (quote string-rectangle) "rect" "\
  3971. Insert STRING on each line of the region-rectangle, shifting text right.
  3972. The left edge of the rectangle specifies the column for insertion.
  3973. This command does not delete or overwrite any existing text.
  3974.  
  3975. Called from a program, takes three args; START, END and STRING." t nil)
  3976.  
  3977. (autoload (quote clear-rectangle) "rect" "\
  3978. Blank out rectangle with corners at point and mark.
  3979. The text previously in the region is overwritten by the blanks.
  3980. When called from a program, requires two args which specify the corners." t nil)
  3981.  
  3982. ;;;***
  3983.  
  3984. ;;;### (autoloads (reposition-window) "reposition" "reposition.el" (11339 34632))
  3985. ;;; Generated autoloads from reposition.el
  3986.  
  3987. (autoload (quote reposition-window) "reposition" "\
  3988. Make the current definition and/or comment visible.
  3989. Further invocations move it to the top of the window or toggle the
  3990. visibility of comments that precede it.
  3991.   Point is left unchanged unless prefix ARG is supplied.
  3992.   If the definition is fully onscreen, it is moved to the top of the
  3993. window.  If it is partly offscreen, the window is scrolled to get the
  3994. definition (or as much as will fit) onscreen, unless point is in a comment
  3995. which is also partly offscreen, in which case the scrolling attempts to get
  3996. as much of the comment onscreen as possible.
  3997.   Initially `reposition-window' attempts to make both the definition and
  3998. preceding comments visible.  Further invocations toggle the visibility of
  3999. the comment lines.
  4000.   If ARG is non-nil, point may move in order to make the whole defun
  4001. visible (if only part could otherwise be made so), to make the defun line
  4002. visible (if point is in code and it could not be made so, or if only
  4003. comments, including the first comment line, are visible), or to make the
  4004. first comment line visible (if point is in a comment)." t nil)
  4005.  
  4006. (define-key esc-map " " (quote reposition-window))
  4007.  
  4008. ;;;***
  4009.  
  4010. ;;;### (autoloads (resume-suspend-hook) "resume" "resume.el" (11236 37830))
  4011. ;;; Generated autoloads from resume.el
  4012.  
  4013. (autoload (quote resume-suspend-hook) "resume" "\
  4014. Clear out the file used for transmitting args when Emacs resumes." nil nil)
  4015.  
  4016. ;;;***
  4017.  
  4018. ;;;### (autoloads (make-ring ring-p) "ring" "ring.el" (11367 8270))
  4019. ;;; Generated autoloads from ring.el
  4020.  
  4021. (autoload (quote ring-p) "ring" "\
  4022. Returns t if X is a ring; nil otherwise." nil nil)
  4023.  
  4024. (autoload (quote make-ring) "ring" "\
  4025. Make a ring that can contain SIZE elements." nil nil)
  4026.  
  4027. ;;;***
  4028.  
  4029. ;;;### (autoloads (rlogin-delchar-or-send-Ctrl-D rlogin-send-Ctrl-backslash rlogin-send-Ctrl-Z rlogin-send-Ctrl-C rlogin-mode rlogin-password rlogin-with-args rlogin) "rlogin" "rlogin.el" (11261 49048))
  4030. ;;; Generated autoloads from rlogin.el
  4031.  
  4032. (defvar rlogin-program "rlogin" "\
  4033. *Name of program to invoke rlogin")
  4034.  
  4035. (defvar rlogin-explicit-args nil "\
  4036. *List of arguments to pass to rlogin on the command line.")
  4037.  
  4038. (defvar rlogin-mode-hook nil "\
  4039. *Hooks to run after setting current buffer to rlogin-mode.")
  4040.  
  4041. (defvar rlogin-process-connection-type nil "\
  4042. *If non-`nil', use a pty for the local rlogin process.  
  4043. If `nil', use a pipe (if pipes are supported on the local system).  
  4044.  
  4045. Generally it is better not to waste ptys on systems which have a static
  4046. number of them.  On the other hand, some implementations of `rlogin' assume
  4047. a pty is being used, and errors will result from using a pipe instead.")
  4048.  
  4049. (defvar rlogin-password-paranoia nil "\
  4050. *If non-`nil', query user for a password in the minibuffer when a Password: prompt appears.
  4051. It's also possible to selectively enter passwords without echoing them in
  4052. the minibuffer using the command `rlogin-password' explicitly.")
  4053.  
  4054. (defvar rlogin-mode-map (quote nil))
  4055.  
  4056. (autoload (quote rlogin) "rlogin" "\
  4057. Open a network login connection to HOST via the `rlogin' program.
  4058. Input is sent line-at-a-time to the remote connection.
  4059.  
  4060. Communication with HOST is recorded in a buffer *rlogin-HOST*.
  4061. If a prefix argument is given and the buffer *rlogin-HOST* already exists,
  4062. a new buffer with a different connection will be made. 
  4063.  
  4064. The variable `rlogin-program' contains the name of the actual program to
  4065. run.  It can be a relative or absolute path. 
  4066.  
  4067. The variable `rlogin-explicit-args' is a list of arguments to give to
  4068. the rlogin when starting." t nil)
  4069.  
  4070. (autoload (quote rlogin-with-args) "rlogin" "\
  4071. Open a new rlogin connection to HOST, even if one already exists. 
  4072. String ARGS is given as arguments to the `rlogin' program, overriding the
  4073. value of `rlogin-explicit-args'." t nil)
  4074.  
  4075. (autoload (quote rlogin-password) "rlogin" "\
  4076. Read a password and send it to an rlogin session.
  4077. For each character typed, a `*' is echoed in the minibuffer.
  4078. End with RET, LFD, or ESC.  DEL or C-h rubs out.  C-u kills line.
  4079. C-g aborts attempt to read and send password. 
  4080.  
  4081. Optional argument PROC is the process to which the password should be sent.
  4082. If not provided, send to the process in the current buffer.  This argument
  4083. is intended primarily for use by `rlogin-filter'." t nil)
  4084.  
  4085. (autoload (quote rlogin-mode) "rlogin" "\
  4086. Set major-mode for rlogin sessions. 
  4087. If `rlogin-mode-hook' is set, run it." t nil)
  4088.  
  4089. (autoload (quote rlogin-send-Ctrl-C) "rlogin" nil t nil)
  4090.  
  4091. (autoload (quote rlogin-send-Ctrl-Z) "rlogin" nil t nil)
  4092.  
  4093. (autoload (quote rlogin-send-Ctrl-backslash) "rlogin" nil t nil)
  4094.  
  4095. (autoload (quote rlogin-delchar-or-send-Ctrl-D) "rlogin" "\
  4096. Delete ARG characters forward, or send a C-d to process if at end of
  4097. buffer." t nil)
  4098.  
  4099. ;;;***
  4100.  
  4101. ;;;### (autoloads (rmail-input rmail-mode rmail) "rmail" "rmail.el" (11360 11262))
  4102. ;;; Generated autoloads from rmail.el
  4103.  
  4104. (defvar rmail-dont-reply-to-names nil "\
  4105. *A regexp specifying names to prune of reply to messages.
  4106. A value of nil means exclude your own name only.")
  4107.  
  4108. (defvar rmail-default-dont-reply-to-names "info-" "\
  4109. A regular expression specifying part of the value of the default value of
  4110. the variable `rmail-dont-reply-to-names', for when the user does not set
  4111. `rmail-dont-reply-to-names' explicitly.  (The other part of the default
  4112. value is the user's name.)
  4113. It is useful to set this variable in the site customization file.")
  4114.  
  4115. (defvar rmail-ignored-headers "^via:\\|^mail-from:\\|^origin:\\|^status:\\|^received:\\|^message-id:\\|^summary-line:" "\
  4116. *Gubbish headers one would rather not see.")
  4117.  
  4118. (defvar rmail-delete-after-output nil "\
  4119. *Non-nil means automatically delete a message that is copied to a file.")
  4120.  
  4121. (defvar rmail-primary-inbox-list nil "\
  4122. *List of files which are inboxes for user's primary mail file `~/RMAIL'.
  4123. `nil' means the default, which is (\"/usr/spool/mail/$USER\")
  4124. (the name varies depending on the operating system,
  4125. and the value of the environment variable MAIL overrides it).")
  4126.  
  4127. (defvar rmail-mail-new-frame nil "\
  4128. *Non-nil means Rmail makes a new frame for composing outgoing mail.")
  4129.  
  4130. (autoload (quote rmail) "rmail" "\
  4131. Read and edit incoming mail.
  4132. Moves messages into file named by  rmail-file-name  (a babyl format file)
  4133.  and edits that file in RMAIL Mode.
  4134. Type \\[describe-mode] once editing that file, for a list of RMAIL commands.
  4135.  
  4136. May be called with filename as argument; then performs rmail editing on
  4137. that file, but does not copy any new mail into the file." t nil)
  4138.  
  4139. (autoload (quote rmail-mode) "rmail" "\
  4140. Rmail Mode is used by \\<rmail-mode-map>\\[rmail] for editing Rmail files.
  4141. All normal editing commands are turned off.
  4142. Instead, these commands are available:
  4143.  
  4144. \\[rmail-beginning-of-message]    Move point to front of this message (same as \\[beginning-of-buffer]).
  4145. \\[scroll-up]    Scroll to next screen of this message.
  4146. \\[scroll-down]    Scroll to previous screen of this message.
  4147. \\[rmail-next-undeleted-message]    Move to Next non-deleted message.
  4148. \\[rmail-previous-undeleted-message]    Move to Previous non-deleted message.
  4149. \\[rmail-next-message]    Move to Next message whether deleted or not.
  4150. \\[rmail-previous-message]    Move to Previous message whether deleted or not.
  4151. \\[rmail-first-message]    Move to the first message in Rmail file.
  4152. \\[rmail-last-message]    Move to the last message in Rmail file.
  4153. \\[rmail-show-message]    Jump to message specified by numeric position in file.
  4154. \\[rmail-search]    Search for string and show message it is found in.
  4155. \\[rmail-delete-forward]    Delete this message, move to next nondeleted.
  4156. \\[rmail-delete-backward]    Delete this message, move to previous nondeleted.
  4157. \\[rmail-undelete-previous-message]    Undelete message.  Tries current message, then earlier messages
  4158.     till a deleted message is found.
  4159. \\[rmail-edit-current-message]    Edit the current message.  \\[rmail-cease-edit] to return to Rmail.
  4160. \\[rmail-expunge]    Expunge deleted messages.
  4161. \\[rmail-expunge-and-save]    Expunge and save the file.
  4162. \\[rmail-quit]       Quit Rmail: expunge, save, then switch to another buffer.
  4163. \\[save-buffer] Save without expunging.
  4164. \\[rmail-get-new-mail]    Move new mail from system spool directory into this file.
  4165. \\[rmail-mail]    Mail a message (same as \\[mail-other-window]).
  4166. \\[rmail-continue]    Continue composing outgoing message started before.
  4167. \\[rmail-reply]    Reply to this message.  Like \\[rmail-mail] but initializes some fields.
  4168. \\[rmail-retry-failure]    Send this message again.  Used on a mailer failure message.
  4169. \\[rmail-forward]    Forward this message to another user.
  4170. \\[rmail-output-to-rmail-file]       Output this message to an Rmail file (append it).
  4171. \\[rmail-output]    Output this message to a Unix-format mail file (append it).
  4172. \\[rmail-input]    Input Rmail file.  Run Rmail on that file.
  4173. \\[rmail-add-label]    Add label to message.  It will be displayed in the mode line.
  4174. \\[rmail-kill-label]    Kill label.  Remove a label from current message.
  4175. \\[rmail-next-labeled-message]   Move to Next message with specified label
  4176.           (label defaults to last one specified).
  4177.           Standard labels: filed, unseen, answered, forwarded, deleted.
  4178.           Any other label is present only if you add it with \\[rmail-add-label].
  4179. \\[rmail-previous-labeled-message]   Move to Previous message with specified label
  4180. \\[rmail-summary]    Show headers buffer, with a one line summary of each message.
  4181. \\[rmail-summary-by-labels]    Summarize only messages with particular label(s).
  4182. \\[rmail-summary-by-recipients]   Summarize only messages with particular recipient(s).
  4183. \\[rmail-summary-by-regexp]   Summarize only messages with particular regexp(s).
  4184. \\[rmail-summary-by-topic]   Summarize only messages with subject line regexp(s).
  4185. \\[rmail-toggle-header]    Toggle display of complete header." t nil)
  4186.  
  4187. (autoload (quote rmail-input) "rmail" "\
  4188. Run Rmail on file FILENAME." t nil)
  4189.  
  4190. ;;;***
  4191.  
  4192. ;;;### (autoloads (rmail-file-p) "rmailout" "rmailout.el" (11496 44723))
  4193. ;;; Generated autoloads from rmailout.el
  4194.  
  4195. (autoload (quote rmail-file-p) "rmailout" nil nil nil)
  4196.  
  4197. ;;;***
  4198.  
  4199. ;;;### (autoloads (rot13-other-window) "rot13" "rot13.el" (11295 37709))
  4200. ;;; Generated autoloads from rot13.el
  4201.  
  4202. (autoload (quote rot13-other-window) "rot13" "\
  4203. Display current buffer in rot 13 in another window." t nil)
  4204.  
  4205. ;;;***
  4206.  
  4207. ;;;### (autoloads (sc-cite-original) "sc" "sc.el" (11350 50069))
  4208. ;;; Generated autoloads from sc.el
  4209.  
  4210. (autoload (quote sc-cite-original) "sc" "\
  4211. Hook version of sc-cite.
  4212. This is callable from the various mail and news readers' reply
  4213. function according to the agreed upon standard. See \\[sc-describe]
  4214. for more details.  Sc-cite-original does not do any yanking of the
  4215. original message but it does require a few things:
  4216.  
  4217.      1) The reply buffer is the current buffer.
  4218.  
  4219.      2) The original message has been yanked and inserted into the
  4220.         reply buffer.
  4221.  
  4222.      3) Verbose mail headers from the original message have been
  4223.         inserted into the reply buffer directly before the text of the
  4224.         original message.
  4225.  
  4226.      4) Point is at the beginning of the verbose headers.
  4227.  
  4228.      5) Mark is at the end of the body of text to be cited." nil nil)
  4229.  
  4230. ;;;***
  4231.  
  4232. ;;;### (autoloads (scheme-mode) "scheme" "scheme.el" (11285 51473))
  4233. ;;; Generated autoloads from scheme.el
  4234.  
  4235. (autoload (quote scheme-mode) "scheme" "\
  4236. Major mode for editing Scheme code.
  4237. Editing commands are similar to those of lisp-mode.
  4238.  
  4239. In addition, if an inferior Scheme process is running, some additional
  4240. commands will be defined, for evaluating expressions and controlling
  4241. the interpreter, and the state of the process will be displayed in the
  4242. modeline of all Scheme buffers.  The names of commands that interact
  4243. with the Scheme process start with \"xscheme-\".  For more information
  4244. see the documentation for xscheme-interaction-mode.
  4245.  
  4246. Commands:
  4247. Delete converts tabs to spaces as it moves back.
  4248. Blank lines separate paragraphs.  Semicolons start comments.
  4249. \\{scheme-mode-map}
  4250. Entry to this mode calls the value of scheme-mode-hook
  4251. if that value is non-nil." t nil)
  4252.  
  4253. ;;;***
  4254.  
  4255. ;;;### (autoloads (scribe-mode) "scribe" "scribe.el" (11185 15625))
  4256. ;;; Generated autoloads from scribe.el
  4257.  
  4258. (autoload (quote scribe-mode) "scribe" "\
  4259. Major mode for editing files of Scribe (a text formatter) source.
  4260. Scribe-mode is similar text-mode, with a few extra commands added.
  4261. \\{scribe-mode-map}
  4262.  
  4263. Interesting variables:
  4264.  
  4265. scribe-fancy-paragraphs
  4266.   Non-nil makes Scribe mode use a different style of paragraph separation.
  4267.  
  4268. scribe-electric-quote
  4269.   Non-nil makes insert of double quote use `` or '' depending on context.
  4270.  
  4271. scribe-electric-parenthesis
  4272.   Non-nil makes an open-parenthesis char (one of `([<{')
  4273.   automatically insert its close if typed after an @Command form." t nil)
  4274.  
  4275. ;;;***
  4276.  
  4277. ;;;### (autoloads (mail-other-frame mail-other-window mail mail-mode) "sendmail" "sendmail.el" (11356 48606))
  4278. ;;; Generated autoloads from sendmail.el
  4279.  
  4280. (defvar mail-self-blind nil "\
  4281. Non-nil means insert BCC to self in messages to be sent.
  4282. This is done when the message is initialized,
  4283. so you can remove or alter the BCC field to override the default.")
  4284.  
  4285. (defvar mail-interactive nil "\
  4286. Non-nil means when sending a message wait for and display errors.
  4287. nil means let mailer mail back a message to report errors.")
  4288.  
  4289. (defvar mail-yank-ignored-headers "^via:\\|^mail-from:\\|^origin:\\|^status:\\|^remailed\\|^received:\\|^message-id:\\|^summary-line:\\|^to:\\|^subject:\\|^in-reply-to:\\|^return-path:" "\
  4290. Delete these headers from old message when it's inserted in a reply.")
  4291.  
  4292. (defvar send-mail-function (quote sendmail-send-it) "\
  4293. Function to call to send the current buffer as mail.
  4294. The headers are be delimited by a line which is `mail-header-separator'.")
  4295.  
  4296. (defvar mail-header-separator "--text follows this line--" "\
  4297. *Line used to separate headers from text in messages being composed.")
  4298.  
  4299. (defvar mail-archive-file-name nil "\
  4300. *Name of file to write all outgoing messages in, or nil for none.
  4301. Do not use an rmail file here!  Instead, use its inbox file.")
  4302.  
  4303. (defvar mail-signature nil "\
  4304. *Text inserted at end of mail buffer when a message is initialized.
  4305. If t, it means to insert the contents of the file `~/.signature'.")
  4306.  
  4307. (autoload (quote mail-mode) "sendmail" "\
  4308. Major mode for editing mail to be sent.
  4309. Like Text Mode but with these additional commands:
  4310. C-c C-s  mail-send (send the message)    C-c C-c  mail-send-and-exit
  4311. C-c C-f  move to a header field (and create it if there isn't):
  4312.      C-c C-f C-t  move to To:    C-c C-f C-s  move to Subj:
  4313.      C-c C-f C-b  move to BCC:    C-c C-f C-c  move to CC:
  4314. C-c C-t  move to message text.
  4315. C-c C-y  mail-yank-original (insert current message, in Rmail).
  4316. C-c C-q  mail-fill-yanked-message (fill what was yanked).
  4317. C-c C-v  mail-sent-via (add a sent-via field for each To or CC)." t nil)
  4318.  
  4319. (autoload (quote mail) "sendmail" "\
  4320. Edit a message to be sent.  Prefix arg means resume editing (don't erase).
  4321. When this function returns, the buffer `*mail*' is selected.
  4322. The value is t if the message was newly initialized; otherwise, nil.
  4323.  
  4324. By default, the signature file `~/.signature' is inserted at the end;
  4325. see the variable `mail-signature'.
  4326.  
  4327. \\<mail-mode-map>
  4328. While editing message, type \\[mail-send-and-exit] to send the message and exit.
  4329.  
  4330. Various special commands starting with C-c are available in sendmail mode
  4331. to move to message header fields:
  4332. \\{mail-mode-map}
  4333.  
  4334. If `mail-self-blind' is non-nil, a BCC to yourself is inserted
  4335. when the message is initialized.
  4336.  
  4337. If `mail-default-reply-to' is non-nil, it should be an address (a string);
  4338. a Reply-to: field with that address is inserted.
  4339.  
  4340. If `mail-archive-file-name' is non-nil, an FCC field with that file name
  4341. is inserted.
  4342.  
  4343. If `mail-setup-hook' is bound, its value is called with no arguments
  4344. after the message is initialized.  It can add more default fields.
  4345.  
  4346. When calling from a program, the second through fifth arguments
  4347.  TO, SUBJECT, IN-REPLY-TO and CC specify if non-nil
  4348.  the initial contents of those header fields.
  4349.  These arguments should not have final newlines.
  4350. The sixth argument REPLYBUFFER is a buffer whose contents
  4351.  should be yanked if the user types C-c C-y.
  4352. The seventh argument ACTIONS is a list of actions to take
  4353.  if/when the message is sent.  Each action looks like (FUNCTION . ARGS);
  4354.  when the message is sent, we apply FUNCTION to ARGS.
  4355.  This is how Rmail arranges to mark messages `answered'." t nil)
  4356.  
  4357. (autoload (quote mail-other-window) "sendmail" "\
  4358. Like `mail' command, but display mail buffer in another window." t nil)
  4359.  
  4360. (autoload (quote mail-other-frame) "sendmail" "\
  4361. Like `mail' command, but display mail buffer in another frame." t nil)
  4362. (define-key ctl-x-map "m" 'mail)
  4363. (define-key ctl-x-4-map "m" 'mail-other-window)
  4364. (define-key ctl-x-5-map "m" 'mail-other-frame)
  4365.  
  4366. ;;;***
  4367.  
  4368. ;;;### (autoloads (server-start) "server" "server.el" (11365 58935))
  4369. ;;; Generated autoloads from server.el
  4370.  
  4371. (autoload (quote server-start) "server" "\
  4372. Allow this Emacs process to be a server for client processes.
  4373. This starts a server communications subprocess through which
  4374. client \"editors\" can send your editing commands to this Emacs job.
  4375. To use the server, set up the program `etc/emacsclient' in the
  4376. Emacs distribution as your standard \"editor\".
  4377.  
  4378. Prefix arg means just kill any existing server communications subprocess." t nil)
  4379.  
  4380. ;;;***
  4381.  
  4382. ;;;### (autoloads (sgml-mode) "sgml-mode" "sgml-mode.el" (11274 32251))
  4383. ;;; Generated autoloads from sgml-mode.el
  4384.  
  4385. (autoload (quote sgml-mode) "sgml-mode" "\
  4386. Major mode for editing SGML.
  4387. Makes > display the matching <.  Makes / display matching /.
  4388. Use \\[sgml-validate] to validate your document with an SGML parser." t nil)
  4389.  
  4390. ;;;***
  4391.  
  4392. ;;;### (autoloads (shell) "shell" "shell.el" (11336 59243))
  4393. ;;; Generated autoloads from shell.el
  4394.  
  4395. (defvar shell-prompt-pattern "^[^#$%>\n]*[#$%>] *" "\
  4396. Regexp to match prompts in the inferior shell.
  4397. Defaults to \"^[^#$%>\\n]*[#$%>] *\", which works pretty well.
  4398. This variable is used to initialise `comint-prompt-regexp' in the 
  4399. shell buffer.
  4400.  
  4401. The pattern should probably not match more than one line.  If it does,
  4402. shell-mode may become confused trying to distinguish prompt from input
  4403. on lines which don't start with a prompt.
  4404.  
  4405. This is a fine thing to set in your `.emacs' file.")
  4406.  
  4407. (autoload (quote shell) "shell" "\
  4408. Run an inferior shell, with I/O through buffer *shell*.
  4409. If buffer exists but shell process is not running, make new shell.
  4410. If buffer exists and shell process is running, 
  4411.  just switch to buffer `*shell*'.
  4412. Program used comes from variable `explicit-shell-file-name',
  4413.  or (if that is nil) from the ESHELL environment variable,
  4414.  or else from SHELL if there is no ESHELL.
  4415. If a file `~/.emacs_SHELLNAME' exists, it is given as initial input
  4416.  (Note that this may lose due to a timing error if the shell
  4417.   discards input when it starts up.)
  4418. The buffer is put in Shell mode, giving commands for sending input
  4419. and controlling the subjobs of the shell.  See `shell-mode'.
  4420. See also the variable `shell-prompt-pattern'.
  4421.  
  4422. The shell file name (sans directories) is used to make a symbol name
  4423. such as `explicit-csh-args'.  If that symbol is a variable,
  4424. its value is used as a list of arguments when invoking the shell.
  4425. Otherwise, one argument `-i' is passed to the shell.
  4426.  
  4427. (Type \\[describe-mode] in the shell buffer for a list of commands.)" t nil)
  4428.  
  4429. ;;;***
  4430.  
  4431. ;;;### (autoloads (solar-equinoxes-solstices sunrise-sunset) "solar" "solar.el" (11494 46887))
  4432. ;;; Generated autoloads from solar.el
  4433.  
  4434. (defvar calendar-time-display-form (quote (12-hours ":" minutes am-pm (if time-zone " (") time-zone (if time-zone ")"))) "\
  4435. *The pseudo-pattern that governs the way a time of day is formatted.
  4436.  
  4437. A pseudo-pattern is a list of expressions that can involve the keywords
  4438. `12-hours', `24-hours', and `minutes',  all numbers in string form,
  4439. and `am-pm' and `time-zone',  both alphabetic strings.
  4440.  
  4441. For example, the form
  4442.  
  4443.   '(24-hours \":\" minutes
  4444.     (if time-zone \" (\") time-zone (if time-zone \")\"))
  4445.  
  4446. would give military-style times like `21:07 (UTC)'.")
  4447.  
  4448. (defvar calendar-latitude nil "\
  4449. *Latitude of `calendar-location-name' in degrees, + north, - south.
  4450. For example, 40.7 for New York City.
  4451. It may not be a good idea to set this in advance for your site;
  4452. if there may be users running Emacs at your site
  4453. who are physically located elsewhere, they would get the wrong
  4454. value and might not know how to override it.")
  4455.  
  4456. (defvar calendar-longitude nil "\
  4457. *Longitude of `calendar-location-name' in degrees, + east, - west.
  4458. For example, -74.0 for New York City.
  4459. It may not be a good idea to set this in advance for your site;
  4460. if there may be users running Emacs at your site
  4461. who are physically located elsewhere, they would get the wrong
  4462. value and might not know how to override it.")
  4463.  
  4464. (defvar calendar-location-name (quote (let ((float-output-format "%.1f")) (format "%s%s, %s%s" (abs calendar-latitude) (if (> calendar-latitude 0) "N" "S") (abs calendar-longitude) (if (> calendar-longitude 0) "E" "W")))) "\
  4465. *Expression evaluating to name of `calendar-longitude', calendar-latitude'.
  4466. Default value is just the latitude, longitude pair.")
  4467.  
  4468. (autoload (quote sunrise-sunset) "solar" "\
  4469. Local time of sunrise and sunset for today.  Accurate to +/- 2 minutes.
  4470. If called with an optional prefix argument, prompts for date.
  4471.  
  4472. If called with an optional double prefix argument, prompts for longitude,
  4473. latitude, time zone, and date.
  4474.  
  4475. This function is suitable for execution in a .emacs file." t nil)
  4476.  
  4477. (autoload (quote solar-equinoxes-solstices) "solar" "\
  4478. Date and time of equinoxes and solstices, if visible in the calendar window.
  4479. Requires floating point." nil nil)
  4480.  
  4481. ;;;***
  4482.  
  4483. ;;;### (autoloads (reverse-region sort-columns sort-regexp-fields sort-fields sort-float-fields sort-numeric-fields sort-pages sort-paragraphs sort-lines) "sort" "sort.el" (11344 9594))
  4484. ;;; Generated autoloads from sort.el
  4485.  
  4486. (autoload (quote sort-lines) "sort" "\
  4487. Sort lines in region alphabetically; argument means descending order.
  4488. Called from a program, there are three arguments:
  4489. REVERSE (non-nil means reverse order), BEG and END (region to sort)." t nil)
  4490.  
  4491. (autoload (quote sort-paragraphs) "sort" "\
  4492. Sort paragraphs in region alphabetically; argument means descending order.
  4493. Called from a program, there are three arguments:
  4494. REVERSE (non-nil means reverse order), BEG and END (region to sort)." t nil)
  4495.  
  4496. (autoload (quote sort-pages) "sort" "\
  4497. Sort pages in region alphabetically; argument means descending order.
  4498. Called from a program, there are three arguments:
  4499. REVERSE (non-nil means reverse order), BEG and END (region to sort)." t nil)
  4500.  
  4501. (autoload (quote sort-numeric-fields) "sort" "\
  4502. Sort lines in region numerically by the ARGth field of each line.
  4503. Fields are separated by whitespace and numbered from 1 up.
  4504. Specified field must contain a number in each line of the region.
  4505. With a negative arg, sorts by the ARGth field counted from the right.
  4506. Called from a program, there are three arguments:
  4507. FIELD, BEG and END.  BEG and END specify region to sort.
  4508. If you want to sort floating-point numbers, try `sort-float-fields'." t nil)
  4509.  
  4510. (autoload (quote sort-float-fields) "sort" "\
  4511. Sort lines in region numerically by the ARGth field of each line.
  4512. Fields are separated by whitespace and numbered from 1 up.  Specified field
  4513. must contain a floating point number in each line of the region.  With a
  4514. negative arg, sorts by the ARGth field counted from the right.  Called from a
  4515. program, there are three arguments: FIELD, BEG and END.  BEG and END specify
  4516. region to sort." t nil)
  4517.  
  4518. (autoload (quote sort-fields) "sort" "\
  4519. Sort lines in region lexicographically by the ARGth field of each line.
  4520. Fields are separated by whitespace and numbered from 1 up.
  4521. With a negative arg, sorts by the ARGth field counted from the right.
  4522. Called from a program, there are three arguments:
  4523. FIELD, BEG and END.  BEG and END specify region to sort." t nil)
  4524.  
  4525. (autoload (quote sort-regexp-fields) "sort" "\
  4526. Sort the region lexicographically as specified by RECORD-REGEXP and KEY.
  4527. RECORD-REGEXP specifies the textual units which should be sorted.
  4528.   For example, to sort lines RECORD-REGEXP would be \"^.*$\"
  4529. KEY specifies the part of each record (ie each match for RECORD-REGEXP)
  4530.   is to be used for sorting.
  4531.   If it is \"\\digit\" then the digit'th \"\\(...\\)\" match field from
  4532.   RECORD-REGEXP is used.
  4533.   If it is \"\\&\" then the whole record is used.
  4534.   Otherwise, it is a regular-expression for which to search within the record.
  4535. If a match for KEY is not found within a record then that record is ignored.
  4536.  
  4537. With a negative prefix arg sorts in reverse order.
  4538.  
  4539. For example: to sort lines in the region by the first word on each line
  4540.  starting with the letter \"f\",
  4541.  RECORD-REGEXP would be \"^.*$\" and KEY would be \"\\=\\<f\\w*\\>\"" t nil)
  4542.  
  4543. (autoload (quote sort-columns) "sort" "\
  4544. Sort lines in region alphabetically by a certain range of columns.
  4545. For the purpose of this command, the region includes
  4546. the entire line that point is in and the entire line the mark is in.
  4547. The column positions of point and mark bound the range of columns to sort on.
  4548. A prefix argument means sort into reverse order.
  4549.  
  4550. Note that `sort-columns' rejects text that contains tabs,
  4551. because tabs could be split across the specified columns
  4552. and it doesn't know how to handle that.  Also, when possible,
  4553. it uses the `sort' utility program, which doesn't understand tabs.
  4554. Use \\[untabify] to convert tabs to spaces before sorting." t nil)
  4555.  
  4556. (autoload (quote reverse-region) "sort" "\
  4557. Reverse the order of lines in a region.
  4558. From a program takes two point or marker arguments, BEG and END." t nil)
  4559.  
  4560. ;;;***
  4561.  
  4562. ;;;### (autoloads (spell-string spell-region spell-word spell-buffer) "spell" "spell.el" (11285 51501))
  4563. ;;; Generated autoloads from spell.el
  4564.  
  4565. (autoload (quote spell-buffer) "spell" "\
  4566. Check spelling of every word in the buffer.
  4567. For each incorrect word, you are asked for the correct spelling
  4568. and then put into a query-replace to fix some or all occurrences.
  4569. If you do not want to change a word, just give the same word
  4570. as its \"correct\" spelling; then the query replace is skipped." t nil)
  4571.  
  4572. (autoload (quote spell-word) "spell" "\
  4573. Check spelling of word at or before point.
  4574. If it is not correct, ask user for the correct spelling
  4575. and `query-replace' the entire buffer to substitute it." t nil)
  4576.  
  4577. (autoload (quote spell-region) "spell" "\
  4578. Like `spell-buffer' but applies only to region.
  4579. Used in a program, applies from START to END.
  4580. DESCRIPTION is an optional string naming the unit being checked:
  4581. for example, \"word\"." t nil)
  4582.  
  4583. (autoload (quote spell-string) "spell" "\
  4584. Check spelling of string supplied as argument." t nil)
  4585.  
  4586. ;;;***
  4587.  
  4588. ;;;### (autoloads (snarf-spooks spook) "spook" "spook.el" (11332 39077))
  4589. ;;; Generated autoloads from spook.el
  4590.  
  4591. (autoload (quote spook) "spook" "\
  4592. Adds that special touch of class to your outgoing mail." t nil)
  4593.  
  4594. (autoload (quote snarf-spooks) "spook" "\
  4595. Return a vector containing the lines from `spook-phrases-file'." nil nil)
  4596.  
  4597. ;;;***
  4598.  
  4599. ;;;### (autoloads (tabify untabify) "tabify" "tabify.el" (11202 22548))
  4600. ;;; Generated autoloads from tabify.el
  4601.  
  4602. (autoload (quote untabify) "tabify" "\
  4603. Convert all tabs in region to multiple spaces, preserving columns.
  4604. Called non-interactively, the region is specified by arguments
  4605. START and END, rather than by the position of point and mark.
  4606. The variable `tab-width' controls the spacing of tab stops." t nil)
  4607.  
  4608. (autoload (quote tabify) "tabify" "\
  4609. Convert multiple spaces in region to tabs when possible.
  4610. A group of spaces is partially replaced by tabs
  4611. when this can be done without changing the column they end at.
  4612. Called non-interactively, the region is specified by arguments
  4613. START and END, rather than by the position of point and mark.
  4614. The variable `tab-width' controls the spacing of tab stops." t nil)
  4615.  
  4616. ;;;***
  4617.  
  4618. ;;;### (autoloads (tar-mode) "tar-mode" "tar-mode.el" (11354 62228))
  4619. ;;; Generated autoloads from tar-mode.el
  4620.  
  4621. (autoload (quote tar-mode) "tar-mode" "\
  4622. Major mode for viewing a tar file as a dired-like listing of its contents.
  4623. You can move around using the usual cursor motion commands. 
  4624. Letters no longer insert themselves.
  4625. Type `e' to pull a file out of the tar file and into its own buffer.
  4626. Type `c' to copy an entry from the tar file into another file on disk.
  4627.  
  4628. If you edit a sub-file of this archive (as with the `e' command) and 
  4629. save it with Control-x Control-s, the contents of that buffer will be 
  4630. saved back into the tar-file buffer; in this way you can edit a file 
  4631. inside of a tar archive without extracting it and re-archiving it.
  4632.  
  4633. See also: variables `tar-update-datestamp' and `tar-anal-blocksize'.
  4634. \\{tar-mode-map}" nil nil)
  4635.  
  4636. ;;;***
  4637.  
  4638. ;;;### (autoloads (rsh telnet) "telnet" "telnet.el" (11357 58585))
  4639. ;;; Generated autoloads from telnet.el
  4640.  
  4641. (autoload (quote telnet) "telnet" "\
  4642. Open a network login connection to host named HOST (a string).
  4643. Communication with HOST is recorded in a buffer *HOST-telnet*.
  4644. Normally input is edited in Emacs and sent a line at a time." t nil)
  4645.  
  4646. (autoload (quote rsh) "telnet" "\
  4647. Open a network login connection to host named HOST (a string).
  4648. Communication with HOST is recorded in a buffer *HOST-rsh*.
  4649. Normally input is edited in Emacs and sent a line at a time." t nil)
  4650.  
  4651. ;;;***
  4652.  
  4653. ;;;### (autoloads (terminal-emulator) "terminal" "terminal.el" (11285 51534))
  4654. ;;; Generated autoloads from terminal.el
  4655.  
  4656. (autoload (quote terminal-emulator) "terminal" "\
  4657. Under a display-terminal emulator in BUFFER, run PROGRAM on arguments ARGS.
  4658. ARGS is a list of argument-strings.  Remaining arguments are WIDTH and HEIGHT.
  4659. BUFFER's contents are made an image of the display generated by that program,
  4660. and any input typed when BUFFER is the current Emacs buffer is sent to that
  4661. program an keyboard input.
  4662.  
  4663. Interactively, BUFFER defaults to \"*terminal*\" and PROGRAM and ARGS
  4664. are parsed from an input-string using your usual shell.
  4665. WIDTH and HEIGHT are determined from the size of the current window
  4666. -- WIDTH will be one less than the window's width, HEIGHT will be its height.
  4667.  
  4668. To switch buffers and leave the emulator, or to give commands
  4669. to the emulator itself (as opposed to the program running under it),
  4670. type Control-^.  The following character is an emulator command.
  4671. Type Control-^ twice to send it to the subprogram.
  4672. This escape character may be changed using the variable `terminal-escape-char'.
  4673.  
  4674. `Meta' characters may not currently be sent through the terminal emulator.
  4675.  
  4676. Here is a list of some of the variables which control the behaviour
  4677. of the emulator -- see their documentation for more information:
  4678. terminal-escape-char, terminal-scrolling, terminal-more-processing,
  4679. terminal-redisplay-interval.
  4680.  
  4681. This function calls the value of terminal-mode-hook if that exists
  4682. and is non-nil after the terminal buffer has been set up and the
  4683. subprocess started.
  4684.  
  4685. Presently with `termcap' only; if somebody sends us code to make this
  4686. work with `terminfo' we will try to use it." t nil)
  4687.  
  4688. ;;;***
  4689.  
  4690. ;;;### (autoloads (latex-mode plain-tex-mode tex-mode) "tex-mode" "tex-mode.el" (11354 8216))
  4691. ;;; Generated autoloads from tex-mode.el
  4692.  
  4693. (defvar tex-shell-file-name nil "\
  4694. *If non-nil, is file name to use for the subshell in which TeX is run.")
  4695.  
  4696. (defvar tex-directory "." "\
  4697. *Directory in which temporary files are left.
  4698. You can make this /tmp if your TEXINPUTS has no relative directories in it
  4699. and you don't try to apply \\[tex-region] or \\[tex-buffer] when there are
  4700. \\input commands with relative directories.")
  4701.  
  4702. (defvar tex-offer-save t "\
  4703. *If non-nil, ask about saving modified buffers before \\[tex-file] is run.")
  4704.  
  4705. (defvar tex-run-command "tex" "\
  4706. *Command used to run TeX subjob.
  4707. If this string contains an asterisk (*), it will be replaced by the
  4708. filename; if not, the name of the file, preceded by blank, will be added to
  4709. this string.")
  4710.  
  4711. (defvar latex-run-command "latex" "\
  4712. *Command used to run LaTeX subjob.
  4713. If this string contains an asterisk (*), it will be replaced by the
  4714. filename; if not, the name of the file, preceded by blank, will be added to
  4715. this string.")
  4716.  
  4717. (defvar latex-block-names nil "\
  4718. *User defined LaTeX block names.
  4719. Combined with `standard-latex-block-names' for minibuffer completion.")
  4720.  
  4721. (defvar slitex-run-command "slitex" "\
  4722. *Command used to run SliTeX subjob.
  4723. If this string contains an asterisk (*), it will be replaced by the
  4724. filename; if not, the name of the file, preceded by blank, will be added to
  4725. this string.")
  4726.  
  4727. (defvar tex-bibtex-command "bibtex" "\
  4728. *Command used by `tex-bibtex-file' to gather bibliographic data.
  4729. If this string contains an asterisk (*), it will be replaced by the
  4730. filename; if not, the name of the file, preceded by blank, will be added to
  4731. this string.")
  4732.  
  4733. (defvar tex-dvi-print-command "lpr -d" "\
  4734. *Command used by \\[tex-print] to print a .dvi file.
  4735. If this string contains an asterisk (*), it will be replaced by the
  4736. filename; if not, the name of the file, preceded by blank, will be added to
  4737. this string.")
  4738.  
  4739. (defvar tex-alt-dvi-print-command "lpr -d" "\
  4740. *Command used by \\[tex-print] with a prefix arg to print a .dvi file.
  4741. If this string contains an asterisk (*), it will be replaced by the
  4742. filename; if not, the name of the file, preceded by blank, will be added to
  4743. this string.
  4744.  
  4745. If two printers are not enough of a choice, you can define the value
  4746. of tex-alt-dvi-print-command to be an expression that asks what you want;
  4747. for example,
  4748.  
  4749.     (setq tex-alt-dvi-print-command
  4750.          '(format \"lpr -P%s\" (read-string \"Use printer: \")))
  4751.  
  4752. would tell \\[tex-print] with a prefix argument to ask you which printer to
  4753. use.")
  4754.  
  4755. (defvar tex-dvi-view-command nil "\
  4756. *Command used by \\[tex-view] to display a .dvi file.
  4757. If this string contains an asterisk (*), it will be replaced by the
  4758. filename; if not, the name of the file, preceded by blank, will be added to
  4759. this string.
  4760.  
  4761. This can be set conditionally so that the previewer used is suitable for the
  4762. window system being used.  For example,
  4763.  
  4764.     (setq tex-dvi-view-command
  4765.           (if (eq window-system 'x) \"xdvi\" \"dvi2tty * | cat -s\"))
  4766.  
  4767. would tell \\[tex-view] use xdvi under X windows and to use dvi2tty
  4768. otherwise.")
  4769.  
  4770. (defvar tex-show-queue-command "lpq" "\
  4771. *Command used by \\[tex-show-print-queue] to show the print queue.
  4772. Should show the queue(s) that \\[tex-print] puts jobs on.")
  4773.  
  4774. (defvar tex-default-mode (quote plain-tex-mode) "\
  4775. *Mode to enter for a new file that might be either TeX or LaTeX.
  4776. This variable is used when it can't be determined whether the file
  4777. is plain TeX or LaTeX or what because the file contains no commands.
  4778. Normally set to either 'plain-tex-mode or 'latex-mode.")
  4779.  
  4780. (defvar tex-open-quote "``" "\
  4781. *String inserted by typing \\[tex-insert-quote] to open a quotation.")
  4782.  
  4783. (defvar tex-close-quote "''" "\
  4784. *String inserted by typing \\[tex-insert-quote] to close a quotation.")
  4785.  
  4786. (autoload (quote tex-mode) "tex-mode" "\
  4787. Major mode for editing files of input for TeX, LaTeX, or SliTeX.
  4788. Tries to determine (by looking at the beginning of the file) whether
  4789. this file is for plain TeX, LaTeX, or SliTeX and calls plain-tex-mode,
  4790. latex-mode, or slitex-mode, respectively.  If it cannot be determined,
  4791. such as if there are no commands in the file, the value of tex-default-mode
  4792. is used." t nil)
  4793.  
  4794. (defalias (quote TeX-mode) (quote tex-mode))
  4795.  
  4796. (defalias (quote LaTeX-mode) (quote latex-mode))
  4797.  
  4798. (autoload (quote plain-tex-mode) "tex-mode" "\
  4799. Major mode for editing files of input for plain TeX.
  4800. Makes $ and } display the characters they match.
  4801. Makes \" insert `` when it seems to be the beginning of a quotation,
  4802. and '' when it appears to be the end; it inserts \" only after a \\.
  4803.  
  4804. Use \\[tex-region] to run TeX on the current region, plus a \"header\"
  4805. copied from the top of the file (containing macro definitions, etc.),
  4806. running TeX under a special subshell.  \\[tex-buffer] does the whole buffer.
  4807. \\[tex-file] saves the buffer and then processes the file.
  4808. \\[tex-print] prints the .dvi file made by any of these.
  4809. \\[tex-view] previews the .dvi file made by any of these.
  4810. \\[tex-bibtex-file] runs bibtex on the file of the current buffer.
  4811.  
  4812. Use \\[validate-tex-buffer] to check buffer for paragraphs containing
  4813. mismatched $'s or braces.
  4814.  
  4815. Special commands:
  4816. \\{tex-mode-map}
  4817.  
  4818. Mode variables:
  4819. tex-run-command
  4820.     Command string used by \\[tex-region] or \\[tex-buffer].
  4821. tex-directory
  4822.     Directory in which to create temporary files for TeX jobs
  4823.     run by \\[tex-region] or \\[tex-buffer].
  4824. tex-dvi-print-command
  4825.     Command string used by \\[tex-print] to print a .dvi file.
  4826. tex-alt-dvi-print-command
  4827.     Alternative command string used by \\[tex-print] (when given a prefix
  4828.     argument) to print a .dvi file.
  4829. tex-dvi-view-command
  4830.     Command string used by \\[tex-view] to preview a .dvi file.
  4831. tex-show-queue-command
  4832.     Command string used by \\[tex-show-print-queue] to show the print
  4833.     queue that \\[tex-print] put your job on.
  4834.  
  4835. Entering Plain-tex mode calls the value of `text-mode-hook', then the value
  4836. of `tex-mode-hook', and then the value of `plain-tex-mode-hook'.  When the
  4837. special subshell is initiated, the value of `tex-shell-hook' is called." t nil)
  4838.  
  4839. (defalias (quote plain-TeX-mode) (quote plain-tex-mode))
  4840.  
  4841. (autoload (quote latex-mode) "tex-mode" "\
  4842. Major mode for editing files of input for LaTeX.
  4843. Makes $ and } display the characters they match.
  4844. Makes \" insert `` when it seems to be the beginning of a quotation,
  4845. and '' when it appears to be the end; it inserts \" only after a \\.
  4846.  
  4847. Use \\[tex-region] to run LaTeX on the current region, plus the preamble
  4848. copied from the top of the file (containing \\documentstyle, etc.),
  4849. running LaTeX under a special subshell.  \\[tex-buffer] does the whole buffer.
  4850. \\[tex-file] saves the buffer and then processes the file.
  4851. \\[tex-print] prints the .dvi file made by any of these.
  4852. \\[tex-view] previews the .dvi file made by any of these.
  4853. \\[tex-bibtex-file] runs bibtex on the file of the current buffer.
  4854.  
  4855. Use \\[validate-tex-buffer] to check buffer for paragraphs containing
  4856. mismatched $'s or braces.
  4857.  
  4858. Special commands:
  4859. \\{tex-mode-map}
  4860.  
  4861. Mode variables:
  4862. latex-run-command
  4863.     Command string used by \\[tex-region] or \\[tex-buffer].
  4864. tex-directory
  4865.     Directory in which to create temporary files for LaTeX jobs
  4866.     run by \\[tex-region] or \\[tex-buffer].
  4867. tex-dvi-print-command
  4868.     Command string used by \\[tex-print] to print a .dvi file.
  4869. tex-alt-dvi-print-command
  4870.     Alternative command string used by \\[tex-print] (when given a prefix
  4871.     argument) to print a .dvi file.
  4872. tex-dvi-view-command
  4873.     Command string used by \\[tex-view] to preview a .dvi file.
  4874. tex-show-queue-command
  4875.     Command string used by \\[tex-show-print-queue] to show the print
  4876.     queue that \\[tex-print] put your job on.
  4877.  
  4878. Entering Latex mode calls the value of text-mode-hook, then the value of
  4879. tex-mode-hook, and then the value of latex-mode-hook.  When the special
  4880. subshell is initiated, the value of tex-shell-hook is called." t nil)
  4881.  
  4882. ;;;***
  4883.  
  4884. ;;;### (autoloads (texinfo-format-region texinfo-format-buffer) "texinfmt" "texinfmt.el" (11462 52384))
  4885. ;;; Generated autoloads from texinfmt.el
  4886.  
  4887. (autoload (quote texinfo-format-buffer) "texinfmt" "\
  4888. Process the current buffer as texinfo code, into an Info file.
  4889. The Info file output is generated in a buffer visiting the Info file
  4890. names specified in the @setfilename command.
  4891.  
  4892. Non-nil argument (prefix, if interactive) means don't make tag table
  4893. and don't split the file if large.  You can use Info-tagify and
  4894. Info-split to do these manually." t nil)
  4895.  
  4896. (autoload (quote texinfo-format-region) "texinfmt" "\
  4897. Convert the current region of the Texinfo file to Info format.
  4898. This lets you see what that part of the file will look like in Info.
  4899. The command is bound to \\[texinfo-format-region].  The text that is
  4900. converted to Info is stored in a temporary buffer." t nil)
  4901.  
  4902. ;;;***
  4903.  
  4904. ;;;### (autoloads (texinfo-mode) "texinfo" "texinfo.el" (11367 23334))
  4905. ;;; Generated autoloads from texinfo.el
  4906.  
  4907. (autoload (quote texinfo-mode) "texinfo" "\
  4908. Major mode for editing Texinfo files.
  4909.  
  4910.   It has these extra commands:
  4911. \\{texinfo-mode-map}
  4912.  
  4913.   These are files that are used as input for TeX to make printed manuals
  4914. and also to be turned into Info files with \\[makeinfo-buffer] or
  4915. the `makeinfo' program.  These files must be written in a very restricted and
  4916. modified version of TeX input format.
  4917.  
  4918.   Editing commands are like text-mode except that the syntax table is
  4919. set up so expression commands skip Texinfo bracket groups.  To see
  4920. what the Info version of a region of the Texinfo file will look like,
  4921. use \\[makeinfo-region], which runs `makeinfo' on the current region.
  4922.  
  4923.   You can show the structure of a Texinfo file with \\[texinfo-show-structure].
  4924. This command shows the structure of a Texinfo file by listing the
  4925. lines with the @-sign commands for @chapter, @section, and the like.
  4926. These lines are displayed in another window called the *Occur* window.
  4927. In that window, you can position the cursor over one of the lines and
  4928. use \\[occur-mode-goto-occurrence], to jump to the corresponding spot
  4929. in the Texinfo file.
  4930.  
  4931.   In addition, Texinfo mode provides commands that insert various
  4932. frequently used @-sign commands into the buffer.  You can use these
  4933. commands to save keystrokes.  And you can insert balanced braces with
  4934. \\[texinfo-insert-braces] and later use the command \\[up-list] to
  4935. move forward past the closing brace.
  4936.  
  4937. Also, Texinfo mode provides functions for automatically creating or
  4938. updating menus and node pointers.  These functions
  4939.  
  4940.   * insert the `Next', `Previous' and `Up' pointers of a node,
  4941.   * insert or update the menu for a section, and
  4942.   * create a master menu for a Texinfo source file.
  4943.  
  4944. Here are the functions:
  4945.  
  4946.     texinfo-update-node                \\[texinfo-update-node]
  4947.     texinfo-every-node-update          \\[texinfo-every-node-update]
  4948.     texinfo-sequential-node-update 
  4949.  
  4950.     texinfo-make-menu                  \\[texinfo-make-menu]
  4951.     texinfo-all-menus-update           \\[texinfo-all-menus-update]
  4952.     texinfo-master-menu
  4953.  
  4954.     texinfo-indent-menu-description (column &optional region-p)
  4955.  
  4956. The `texinfo-column-for-description' variable specifies the column to
  4957. which menu descriptions are indented. 
  4958.  
  4959. Passed an argument (a prefix argument, if interactive), the
  4960. `texinfo-update-node' and `texinfo-make-menu' functions do their jobs
  4961. in the region.
  4962.  
  4963. To use the updating commands, you must structure your Texinfo file
  4964. hierarchically, such that each `@node' line, with the exception of the
  4965. Top node, is accompanied by some kind of section line, such as an
  4966. `@chapter' or `@section' line.
  4967.  
  4968. If the file has a `top' node, it must be called `top' or `Top' and
  4969. be the first node in the file.
  4970.  
  4971. Entering Texinfo mode calls the value of text-mode-hook, and then the
  4972. value of texinfo-mode-hook." t nil)
  4973.  
  4974. ;;;***
  4975.  
  4976. ;;;### (autoloads (texinfo-sequential-node-update texinfo-every-node-update texinfo-update-node) "texnfo-upd" "texnfo-upd.el" (11488 11824))
  4977. ;;; Generated autoloads from texnfo-upd.el
  4978.  
  4979. (autoload (quote texinfo-update-node) "texnfo-upd" "\
  4980. Without any prefix argument, update the node in which point is located.
  4981. Non-nil argument (prefix, if interactive) means update the nodes in the
  4982. marked region.
  4983.  
  4984. The functions for creating or updating nodes and menus, and their
  4985. keybindings, are:
  4986.  
  4987.     texinfo-update-node (&optional region-p)    \\[texinfo-update-node]
  4988.     texinfo-every-node-update ()                \\[texinfo-every-node-update]
  4989.     texinfo-sequential-node-update (&optional region-p)
  4990.  
  4991.     texinfo-make-menu (&optional region-p)      \\[texinfo-make-menu]
  4992.     texinfo-all-menus-update ()                 \\[texinfo-all-menus-update]
  4993.     texinfo-master-menu ()
  4994.  
  4995.     texinfo-indent-menu-description (column &optional region-p)
  4996.  
  4997. The `texinfo-column-for-description' variable specifies the column to
  4998. which menu descriptions are indented. Its default value is 32." t nil)
  4999.  
  5000. (autoload (quote texinfo-every-node-update) "texnfo-upd" "\
  5001. Update every node in a Texinfo file." t nil)
  5002.  
  5003. (autoload (quote texinfo-sequential-node-update) "texnfo-upd" "\
  5004. Update one node (or many) in a Texinfo file with sequential pointers.
  5005.  
  5006. This function causes the `Next' or `Previous' pointer to point to the
  5007. immediately preceding or following node, even if it is at a higher or
  5008. lower hierarchical level in the document.  Continually pressing `n' or
  5009. `p' takes you straight through the file.
  5010.  
  5011. Without any prefix argument, update the node in which point is located.
  5012. Non-nil argument (prefix, if interactive) means update the nodes in the
  5013. marked region.
  5014.  
  5015. This command makes it awkward to navigate among sections and
  5016. subsections; it should be used only for those documents that are meant
  5017. to be read like a novel rather than a reference, and for which the
  5018. Info `g*' command is inadequate." t nil)
  5019.  
  5020. ;;;***
  5021.  
  5022. ;;;### (autoloads (display-time) "time" "time.el" (11322 20891))
  5023. ;;; Generated autoloads from time.el
  5024.  
  5025. (defvar display-time-day-and-date nil "\
  5026. *Non-nil means \\[display-time] should display day and date as well as time.")
  5027.  
  5028. (autoload (quote display-time) "time" "\
  5029. Display current time, load level, and mail flag in mode line of each buffer.
  5030. Updates automatically every minute.
  5031. If `display-time-day-and-date' is non-nil, the current day and date
  5032. are displayed as well.
  5033. After each update, `display-time-hook' is run with `run-hooks'." t nil)
  5034.  
  5035. ;;;***
  5036.  
  5037. ;;;### (autoloads (time-stamp) "time-stamp" "time-stamp.el" (11351 4303))
  5038. ;;; Generated autoloads from time-stamp.el
  5039.  
  5040. (autoload (quote time-stamp) "time-stamp" "\
  5041. Update the time stamp string in the buffer.
  5042. Only does its thing if the variable  time-stamp-active  is non-nil.
  5043. Typically used on  write-file-hooks  for automatic time-stamping.
  5044. The format of the time stamp is determined by the variable
  5045. time-stamp-format.  The first  time-stamp-line-limit  lines of the
  5046. buffer (normally 8) are searched for the time stamp template,
  5047. and if it is found, a new time stamp is written into it." t nil)
  5048.  
  5049. ;;;***
  5050.  
  5051. ;;;### (autoloads (run-at-time) "timer" "timer.el" (11285 51562))
  5052. ;;; Generated autoloads from timer.el
  5053.  
  5054. (autoload (quote run-at-time) "timer" "\
  5055. Run a function at a time, and optionally on a regular interval.
  5056. Arguments are TIME, REPEAT, FUNCTION &rest ARGS.
  5057. TIME, a string, can be specified absolutely or relative to now.
  5058. TIME can also be an integer, a number of seconds.
  5059. REPEAT, an integer number of seconds, is the interval on which to repeat
  5060. the call to the function.  If REPEAT is nil, call it just once.
  5061.  
  5062. Absolute times may be specified in a wide variety of formats;
  5063. Something of the form `HOUR:MIN:SEC TIMEZONE MONTH/DAY/YEAR', where
  5064. all fields are numbers, works; the format used by the Unix `date'
  5065. command works too.
  5066.  
  5067. Relative times may be specified as a series of numbers followed by units:
  5068.   1 min             denotes one minute from now.
  5069.   min            does too.
  5070.   1 min 5 sec        denotes 65 seconds from now.
  5071.   1 min 2 sec 3 hour 4 day 5 week 6 fortnight 7 month 8 year
  5072.             denotes the sum of all the given durations from now." t nil)
  5073.  
  5074. ;;;***
  5075.  
  5076. ;;;### (autoloads (tpu-edt-on) "tpu-edt" "tpu-edt.el" (11368 32024))
  5077. ;;; Generated autoloads from tpu-edt.el
  5078.  
  5079. (fset (quote tpu-edt-mode) (quote tpu-edt-on))
  5080.  
  5081. (fset (quote tpu-edt) (quote tpu-edt-on))
  5082.  
  5083. (autoload (quote tpu-edt-on) "tpu-edt" "\
  5084. Turn on TPU/edt emulation." t nil)
  5085.  
  5086. ;;;***
  5087.  
  5088. ;;;### (autoloads (tq-create) "tq" "tq.el" (10941 58296))
  5089. ;;; Generated autoloads from tq.el
  5090.  
  5091. (autoload (quote tq-create) "tq" "\
  5092. Create and return a transaction queue communicating with PROCESS.
  5093. PROCESS should be a subprocess capable of sending and receiving
  5094. streams of bytes.  It may be a local process, or it may be connected
  5095. to a tcp server on another machine." nil nil)
  5096.  
  5097. ;;;***
  5098.  
  5099. ;;;### (autoloads (trace-function-background trace-function) "trace" "trace.el" (11256 21938))
  5100. ;;; Generated autoloads from trace.el
  5101.  
  5102. (defvar trace-buffer "*trace-output*" "\
  5103. *Trace output will by default go to that buffer.")
  5104.  
  5105. (autoload (quote trace-function) "trace" "\
  5106. Traces FUNCTION with trace output going to BUFFER.
  5107. For every call of FUNCTION Lisp-style trace messages that display argument
  5108. and return values will be inserted into BUFFER. This function generates the
  5109. trace advice for FUNCTION and activates it together with any other advice
  5110. there might be!! The trace BUFFER will popup whenever FUNCTION is called.
  5111. Do not use this to trace functions that switch buffers or do any other
  5112. display oriented stuff, use `trace-function-background' instead." t nil)
  5113.  
  5114. (autoload (quote trace-function-background) "trace" "\
  5115. Traces FUNCTION with trace output going quietly to BUFFER.
  5116. For every call of FUNCTION Lisp-style trace messages that display argument
  5117. and return values will be inserted into BUFFER. This function generates the
  5118. trace advice for FUNCTION and activates it together with any other advice
  5119. there might be!! Trace output will quietly go to BUFFER without changing
  5120. the window or buffer configuration at all." t nil)
  5121.  
  5122. ;;;***
  5123.  
  5124. ;;;### (autoloads (tc-recenter tc-scroll-down tc-scroll-up tc-scroll-line tc-associated-buffer tc-merge tc-dissociate tc-split tc-associate-buffer tc-two-columns) "two-column" "two-column.el" (11223 37223))
  5125. ;;; Generated autoloads from two-column.el
  5126.  
  5127. (defvar tc-mode-map nil "\
  5128. Keymap for commands for two-column mode.")
  5129.  
  5130. (if tc-mode-map nil (setq tc-mode-map (make-sparse-keymap)) (define-key tc-mode-map "1" (quote tc-merge)) (define-key tc-mode-map "2" (quote tc-two-columns)) (define-key tc-mode-map "b" (quote tc-associate-buffer)) (define-key tc-mode-map "e" (quote tc-dissociate)) (define-key tc-mode-map " " (quote tc-recenter)) (define-key tc-mode-map "o" (quote tc-associated-buffer)) (define-key tc-mode-map "s" (quote tc-split)) (define-key tc-mode-map "{" (quote shrink-window-horizontally)) (define-key tc-mode-map "}" (quote enlarge-window-horizontally)) (define-key tc-mode-map " " (quote tc-scroll-up)) (define-key tc-mode-map "" (quote tc-scroll-down)) (define-key tc-mode-map "" (quote tc-scroll-line)))
  5131.  
  5132. (global-set-key "6" tc-mode-map)
  5133.  
  5134. (autoload (quote tc-two-columns) "two-column" "\
  5135. Split current window vertically for two-column editing.
  5136.  
  5137. When called the first time, associates a buffer with the current
  5138. buffer.  Both buffers are put in two-column minor mode and
  5139. tc-mode-hook gets called on both.  These buffers remember
  5140. about one another, even when renamed.
  5141.  
  5142. When called again, restores the screen layout with the current buffer
  5143. first and the associated buffer to it's right.
  5144.  
  5145. If you include long lines, i.e which will span both columns (eg.
  5146. source code), they should be in what will be the first column, with
  5147. the associated buffer having empty lines next to them.
  5148.  
  5149. You have the following commands at your disposal:
  5150.  
  5151. \\[tc-two-columns]   Rearrange screen
  5152. \\[tc-associate-buffer]   Reassociate buffer after changing major mode
  5153. \\[tc-scroll-up]   Scroll both buffers up by a screenfull
  5154. \\[tc-scroll-down]   Scroll both buffers down by a screenful
  5155. \\[tc-scroll-line]   Scroll both buffers up by one or more lines
  5156. \\[tc-recenter]   Recenter and realign other buffer
  5157. \\[shrink-window-horizontally], \\[enlarge-window-horizontally]   Shrink, enlarge current column
  5158. \\[tc-associated-buffer]   Switch to associated buffer
  5159. \\[tc-merge]   Merge both buffers
  5160.  
  5161. These keybindings can be customized in your ~/.emacs by `tc-prefix'
  5162. and `tc-mode-map'.
  5163.  
  5164. The appearance of the screen can be customized by the variables
  5165. `tc-window-width', `tc-beyond-fill-column',
  5166. `tc-mode-line-format' and `truncate-partial-width-windows'." t nil)
  5167.  
  5168. (autoload (quote tc-associate-buffer) "two-column" "\
  5169. Associate another buffer with this one in two-column minor mode.
  5170. Can also be used to associate a just previously visited file, by
  5171. accepting the proposed default buffer.
  5172.  
  5173. See  \\[tc-two-columns]  and  `lisp/two-column.el'  for further details." t nil)
  5174.  
  5175. (autoload (quote tc-split) "two-column" "\
  5176. Unmerge a two-column text into two buffers in two-column minor mode.
  5177. The text is unmerged at the cursor's column which becomes the local
  5178. value of `tc-window-width'.  Only lines that have the ARG same
  5179. preceding characters at that column get split.  The ARG preceding
  5180. characters without any leading whitespace become the local value for
  5181. `tc-separator'.  This way lines that continue across both
  5182. columns remain untouched in the first buffer.
  5183.  
  5184. This function can be used with a prototype line, to set up things as
  5185. you like them.  You write the first line of each column with the
  5186. separator you like and then unmerge that line.  E.g.:
  5187.  
  5188. First column's text    sSs  Second columns text
  5189.                \\___/\\
  5190.             /    \\
  5191.    5 character Separator      You type  M-5 \\[tc-split]  with the point here
  5192.  
  5193. See  \\[tc-two-columns]  and  `lisp/two-column.el'  for further details." t nil)
  5194.  
  5195. (autoload (quote tc-dissociate) "two-column" "\
  5196. Turn off two-column minor mode in current and associated buffer.
  5197. If the associated buffer is unmodified and empty, it is killed." t nil)
  5198.  
  5199. (autoload (quote tc-merge) "two-column" "\
  5200. Merges the associated buffer with the current buffer.
  5201. They get merged at the column, which is the value of
  5202. `tc-window-width', i.e. usually at the vertical window
  5203. separator.  This separator gets replaced with white space.  Beyond
  5204. that the value of gets inserted on merged lines.  The two columns are
  5205. thus pasted side by side, in a single text.  If the other buffer is
  5206. not displayed to the left of this one, then this one becomes the left
  5207. column.
  5208.  
  5209. If you want `tc-separator' on empty lines in the second column,
  5210. you should put just one space in them.  In the final result, you can strip
  5211. off trailing spaces with \\[beginning-of-buffer] \\[replace-regexp] [ SPC TAB ] + $ RET RET" t nil)
  5212.  
  5213. (autoload (quote tc-associated-buffer) "two-column" "\
  5214. Switch to associated buffer." t nil)
  5215.  
  5216. (autoload (quote tc-scroll-line) "two-column" "\
  5217. Scroll current window upward by ARG lines.
  5218. The associated window gets scrolled to the same line." t nil)
  5219.  
  5220. (autoload (quote tc-scroll-up) "two-column" "\
  5221. Scroll current window upward by ARG screens.
  5222. The associated window gets scrolled to the same line." t nil)
  5223.  
  5224. (autoload (quote tc-scroll-down) "two-column" "\
  5225. Scroll current window downward by ARG screens.
  5226. The associated window gets scrolled to the same line." t nil)
  5227.  
  5228. (autoload (quote tc-recenter) "two-column" "\
  5229. Center point in window.  With ARG, put point on line ARG.
  5230. This counts from bottom if ARG is negative.  The associated window
  5231. gets scrolled to the same line." t nil)
  5232.  
  5233. ;;;***
  5234.  
  5235. ;;;### (autoloads (ununderline-region underline-region) "underline" "underline.el" (11185 16923))
  5236. ;;; Generated autoloads from underline.el
  5237.  
  5238. (autoload (quote underline-region) "underline" "\
  5239. Underline all nonblank characters in the region.
  5240. Works by overstriking underscores.
  5241. Called from program, takes two arguments START and END
  5242. which specify the range to operate on." t nil)
  5243.  
  5244. (autoload (quote ununderline-region) "underline" "\
  5245. Remove all underlining (overstruck underscores) in the region.
  5246. Called from program, takes two arguments START and END
  5247. which specify the range to operate on." t nil)
  5248.  
  5249. ;;;***
  5250.  
  5251. ;;;### (autoloads (unrmail batch-unrmail) "unrmail" "unrmail.el" (11345 60792))
  5252. ;;; Generated autoloads from unrmail.el
  5253.  
  5254. (autoload (quote batch-unrmail) "unrmail" "\
  5255. Convert Rmail files to mailbox files.
  5256. Specify the input Rmail file names as command line arguments.
  5257. For each Rmail file, the corresponding output file name
  5258. is made by adding `.mail' at the end.
  5259. For example, invoke `emacs -batch -f batch-unrmail RMAIL'." nil nil)
  5260.  
  5261. (autoload (quote unrmail) "unrmail" "\
  5262. Convert Rmail file FILE to mailbox-format file TO-FILE." t nil)
  5263.  
  5264. ;;;***
  5265.  
  5266. ;;;### (autoloads (ask-to-update-copyright update-copyright) "upd-copyr" "upd-copyr.el" (11086 5246))
  5267. ;;; Generated autoloads from upd-copyr.el
  5268.  
  5269. (defvar replace-copying-with nil "\
  5270. *If non-nil, replace copying notices with this file.")
  5271.  
  5272. (autoload (quote update-copyright) "upd-copyr" "\
  5273. Update the copyright notice at the beginning of the buffer
  5274. to indicate the current year.  If optional arg REPLACE is given
  5275. (interactively, with prefix arg) replace the years in the notice
  5276. rather than adding the current year after them.
  5277. If `replace-copying-with' is set, the copying permissions following the
  5278. copyright are replaced as well.
  5279.  
  5280. If optional third argument ASK is non-nil, the user is prompted for whether
  5281. or not to update the copyright.  If optional fourth argument ASK-YEAR is
  5282. non-nil, the user is prompted for whether or not to replace the year rather
  5283. than adding to it." t nil)
  5284.  
  5285. (autoload (quote ask-to-update-copyright) "upd-copyr" "\
  5286. If the current buffer contains a copyright notice that is out of date,
  5287. ask the user if it should be updated with `update-copyright' (which see).
  5288. Put this on write-file-hooks." nil nil)
  5289.  
  5290. ;;;***
  5291.  
  5292. ;;;### (autoloads (ask-user-about-supersession-threat ask-user-about-lock) "userlock" "userlock.el" (10941 47202))
  5293. ;;; Generated autoloads from userlock.el
  5294.  
  5295. (autoload (quote ask-user-about-lock) "userlock" "\
  5296. Ask user what to do when he wants to edit FILE but it is locked by USER.
  5297. This function has a choice of three things to do:
  5298.   do (signal 'buffer-file-locked (list FILE USER))
  5299.     to refrain from editing the file
  5300.   return t (grab the lock on the file)
  5301.   return nil (edit the file even though it is locked).
  5302. You can rewrite it to use any criterion you like to choose which one to do." nil nil)
  5303.  
  5304. (autoload (quote ask-user-about-supersession-threat) "userlock" "\
  5305. Ask a user who is about to modify an obsolete buffer what to do.
  5306. This function has two choices: it can return, in which case the modification
  5307. of the buffer will proceed, or it can (signal 'file-supersession (file)),
  5308. in which case the proposed buffer modification will not be made.
  5309.  
  5310. You can rewrite this to use any criterion you like to choose which one to do.
  5311. The buffer in question is current when this function is called." nil nil)
  5312.  
  5313. ;;;***
  5314.  
  5315. ;;;### (autoloads (vc-update-change-log vc-cancel-version vc-revert-buffer vc-print-log vc-retrieve-snapshot vc-create-snapshot vc-directory vc-insert-headers vc-version-other-window vc-diff vc-register vc-next-action) "vc" "vc.el" (11495 462))
  5316. ;;; Generated autoloads from vc.el
  5317.  
  5318. (defvar vc-checkin-hook nil "\
  5319. *List of functions called after a checkin is done.  See `run-hooks'.")
  5320.  
  5321. (autoload (quote vc-next-action) "vc" "\
  5322. Do the next logical checkin or checkout operation on the current file.
  5323.    If the file is not already registered, this registers it for version
  5324. control and then retrieves a writable, locked copy for editing.
  5325.    If the file is registered and not locked by anyone, this checks out
  5326. a writable and locked file ready for editing.
  5327.    If the file is checked out and locked by the calling user, this
  5328. first checks to see if the file has changed since checkout.  If not,
  5329. it performs a revert.
  5330.    If the file has been changed, this pops up a buffer for entry
  5331. of a log message; when the message has been entered, it checks in the
  5332. resulting changes along with the log message as change commentary.  If
  5333. the variable `vc-keep-workfiles' is non-nil (which is its default), a
  5334. read-only copy of the changed file is left in place afterwards.
  5335.    If the file is registered and locked by someone else, you are given
  5336. the option to steal the lock.
  5337.    If you call this from within a VC dired buffer with no files marked,
  5338. it will operate on the file in the current line.
  5339.    If you call this from within a VC dired buffer, and one or more
  5340. files are marked, it will accept a log message and then operate on
  5341. each one.  The log message will be used as a comment for any register
  5342. or checkin operations, but ignored when doing checkouts.  Attempted
  5343. lock steals will raise an error." t nil)
  5344.  
  5345. (autoload (quote vc-register) "vc" "\
  5346. Register the current file into your version-control system." t nil)
  5347.  
  5348. (autoload (quote vc-diff) "vc" "\
  5349. Display diffs between file versions.
  5350. Normally this compares the current file and buffer with the most recent 
  5351. checked in version of that file.  This uses no arguments.
  5352. With a prefix argument, it reads the file name to use
  5353. and two version designators specifying which versions to compare." t nil)
  5354.  
  5355. (autoload (quote vc-version-other-window) "vc" "\
  5356. Visit version REV of the current buffer in another window.
  5357. If the current buffer is named `F', the version is named `F.~REV~'.
  5358. If `F.~REV~' already exists, it is used instead of being re-created." t nil)
  5359.  
  5360. (autoload (quote vc-insert-headers) "vc" "\
  5361. Insert headers in a file for use with your version-control system.
  5362. Headers desired are inserted at the start of the buffer, and are pulled from
  5363. the variable `vc-header-alist'." t nil)
  5364.  
  5365. (autoload (quote vc-directory) "vc" "\
  5366. Show version-control status of all files under the current directory." t nil)
  5367.  
  5368. (autoload (quote vc-create-snapshot) "vc" "\
  5369. Make a snapshot called NAME.
  5370. The snapshot is made from all registered files at or below the current
  5371. directory.  For each file, the version level of its latest
  5372. version becomes part of the named configuration." t nil)
  5373.  
  5374. (autoload (quote vc-retrieve-snapshot) "vc" "\
  5375. Retrieve the snapshot called NAME.
  5376. This function fails if any files are locked at or below the current directory
  5377. Otherwise, all registered files are checked out (unlocked) at their version
  5378. levels in the snapshot." t nil)
  5379.  
  5380. (autoload (quote vc-print-log) "vc" "\
  5381. List the change log of the current buffer in a window." t nil)
  5382.  
  5383. (autoload (quote vc-revert-buffer) "vc" "\
  5384. Revert the current buffer's file back to the latest checked-in version.
  5385. This asks for confirmation if the buffer contents are not identical
  5386. to that version." t nil)
  5387.  
  5388. (autoload (quote vc-cancel-version) "vc" "\
  5389. Get rid of most recently checked in version of this file.
  5390. A prefix argument means do not revert the buffer afterwards." t nil)
  5391.  
  5392. (autoload (quote vc-update-change-log) "vc" "\
  5393. Find change log file and add entries from recent RCS logs.
  5394. The mark is left at the end of the text prepended to the change log.
  5395. With prefix arg of C-u, only find log entries for the current buffer's file.
  5396. With any numeric prefix arg, find log entries for all files currently visited.
  5397. Otherwise, find log entries for all registered files in the default directory.
  5398. From a program, any arguments are passed to the `rcs2log' script." t nil)
  5399.  
  5400. ;;;***
  5401.  
  5402. ;;;### (autoloads (vi-mode) "vi" "vi.el" (11285 51569))
  5403. ;;; Generated autoloads from vi.el
  5404.  
  5405. (autoload (quote vi-mode) "vi" "\
  5406. Major mode that acts like the `vi' editor.
  5407. The purpose of this mode is to provide you the combined power of vi (namely,
  5408. the \"cross product\" effect of commands and repeat last changes) and Emacs.
  5409.  
  5410. This command redefines nearly all keys to look like vi commands.
  5411. It records the previous major mode, and any vi command for input
  5412. (`i', `a', `s', etc.) switches back to that mode.
  5413. Thus, ordinary Emacs (in whatever major mode you had been using)
  5414. is \"input\" mode as far as vi is concerned.
  5415.  
  5416. To get back into vi from \"input\" mode, you must issue this command again.
  5417. Therefore, it is recommended that you assign it to a key.
  5418.  
  5419. Major differences between this mode and real vi :
  5420.  
  5421. * Limitations and unsupported features
  5422.   - Search patterns with line offset (e.g. /pat/+3 or /pat/z.) are
  5423.     not supported.
  5424.   - Ex commands are not implemented; try ':' to get some hints.
  5425.   - No line undo (i.e. the 'U' command), but multi-undo is a standard feature.
  5426.  
  5427. * Modifications
  5428.   - The stopping positions for some point motion commands (word boundary,
  5429.     pattern search) are slightly different from standard 'vi'.
  5430.     Also, no automatic wrap around at end of buffer for pattern searching.
  5431.   - Since changes are done in two steps (deletion then insertion), you need
  5432.     to undo twice to completely undo a change command.  But this is not needed
  5433.     for undoing a repeated change command.
  5434.   - No need to set/unset 'magic', to search for a string with regular expr
  5435.     in it just put a prefix arg for the search commands.  Replace cmds too.
  5436.   - ^R is bound to incremental backward search, so use ^L to redraw screen.
  5437.  
  5438. * Extensions
  5439.   - Some standard (or modified) Emacs commands were integrated, such as
  5440.     incremental search, query replace, transpose objects, and keyboard macros.
  5441.   - In command state, ^X links to the 'ctl-x-map', and ESC can be linked to
  5442.     esc-map or set undefined.  These can give you the full power of Emacs.
  5443.   - See vi-com-map for those keys that are extensions to standard vi, e.g.
  5444.     `vi-name-last-change-or-macro', `vi-verify-spelling', `vi-locate-def',
  5445.     `vi-mark-region', and 'vi-quote-words'.  Some of them are quite handy.
  5446.   - Use \\[vi-switch-mode] to switch among different modes quickly.
  5447.   
  5448. Syntax table and abbrevs while in vi mode remain as they were in Emacs." t nil)
  5449.  
  5450. ;;;***
  5451.  
  5452. ;;;### (autoloads (view-mode view-buffer-other-window view-buffer view-file-other-window view-file) "view" "view.el" (11336 19791))
  5453. ;;; Generated autoloads from view.el
  5454.  
  5455. (autoload (quote view-file) "view" "\
  5456. View FILE in View mode, returning to previous buffer when done.
  5457. The usual Emacs commands are not available; instead,
  5458. a special set of commands (mostly letters and punctuation)
  5459. are defined for moving around in the buffer.
  5460. Space scrolls forward, Delete scrolls backward.
  5461. For list of all View commands, type ? or h while viewing.
  5462.  
  5463. This command runs the normal hook `view-hook'." t nil)
  5464.  
  5465. (autoload (quote view-file-other-window) "view" "\
  5466. View FILE in View mode in other window.
  5467. Return to previous buffer when done.
  5468. The usual Emacs commands are not available; instead,
  5469. a special set of commands (mostly letters and punctuation)
  5470. are defined for moving around in the buffer.
  5471. Space scrolls forward, Delete scrolls backward.
  5472. For list of all View commands, type ? or h while viewing.
  5473.  
  5474. This command runs the normal hook `view-hook'." t nil)
  5475.  
  5476. (autoload (quote view-buffer) "view" "\
  5477. View BUFFER in View mode, returning to previous buffer when done.
  5478. The usual Emacs commands are not available; instead,
  5479. a special set of commands (mostly letters and punctuation)
  5480. are defined for moving around in the buffer.
  5481. Space scrolls forward, Delete scrolls backward.
  5482. For list of all View commands, type ? or h while viewing.
  5483.  
  5484. This command runs the normal hook `view-hook'." t nil)
  5485.  
  5486. (autoload (quote view-buffer-other-window) "view" "\
  5487. View BUFFER in View mode in another window,
  5488. returning to original buffer when done *only* if 
  5489. prefix argument NOT-RETURN is nil (which is the default).
  5490.  
  5491. The usual Emacs commands are not available in View mode; instead,
  5492. a special set of commands (mostly letters and punctuation)
  5493. are defined for moving around in the buffer.
  5494. Space scrolls forward, Delete scrolls backward.
  5495. For list of all View commands, type ? or h while viewing.
  5496.  
  5497. This command runs the normal hook `view-hook'." t nil)
  5498.  
  5499. (autoload (quote view-mode) "view" "\
  5500. Major mode for viewing text but not editing it.
  5501. Letters do not insert themselves.  Instead these commands are provided.
  5502. Most commands take prefix arguments.  Commands dealing with lines
  5503. default to \"scroll size\" lines (initially size of window).
  5504. Search commands default to a repeat count of one.
  5505. M-< or <    move to beginning of buffer.
  5506. M-> or >    move to end of buffer.
  5507. C-v or Space    scroll forward lines.
  5508. M-v or DEL    scroll backward lines.
  5509. CR or LF    scroll forward one line (backward with prefix argument).
  5510. z        like Space except set number of lines for further
  5511.            scrolling commands to scroll by.
  5512. C-u and Digits    provide prefix arguments.  `-' denotes negative argument.
  5513. =        prints the current line number.
  5514. g        goes to line given by prefix argument.
  5515. / or M-C-s    searches forward for regular expression
  5516. \\ or M-C-r    searches backward for regular expression.
  5517. n        searches forward for last regular expression.
  5518. p        searches backward for last regular expression.
  5519. C-@ or .    set the mark.
  5520. x        exchanges point and mark.
  5521. C-s or s    do forward incremental search.
  5522. C-r or r    do reverse incremental search.
  5523. @ or '        return to mark and pops mark ring.
  5524.           Mark ring is pushed at start of every
  5525.           successful search and when jump to line to occurs.
  5526.           The mark is set on jump to buffer start or end.
  5527. ? or h        provide help message (list of commands).
  5528. \\[Helper-help]        provides help (list of commands or description of a command).
  5529. C-n        moves down lines vertically.
  5530. C-p        moves upward lines vertically.
  5531. C-l        recenters the screen.
  5532. q or C-c    exit view-mode and return to previous buffer.
  5533.  
  5534. Entry to this mode runs the normal hook `view-hook'.
  5535.  
  5536. \\{view-mode-map}" nil nil)
  5537.  
  5538. ;;;***
  5539.  
  5540. ;;;### (autoloads (vip-mode) "vip" "vip.el" (11285 51578))
  5541. ;;; Generated autoloads from vip.el
  5542.  
  5543. (autoload (quote vip-mode) "vip" "\
  5544. Turn on VIP emulation of VI." t nil)
  5545.  
  5546. ;;;***
  5547.  
  5548. ;;;### (autoloads (wordstar-mode) "ws-mode" "ws-mode.el" (11486 24343))
  5549. ;;; Generated autoloads from ws-mode.el
  5550.  
  5551. (autoload (quote wordstar-mode) "ws-mode" "\
  5552. Major mode with WordStar-like key bindings.
  5553.  
  5554. BUGS:
  5555.  - Help menus with WordStar commands (C-j just calls help-for-help)
  5556.    are not implemented
  5557.  - Options for search and replace
  5558.  - Show markers (C-k h) is somewhat strange
  5559.  - Search and replace (C-q a) is only available in forward direction
  5560.  
  5561. No key bindings beginning with ESC are installed, they will work
  5562. Emacs-like.
  5563.  
  5564. The key bindings are:
  5565.  
  5566.   C-a        backward-word
  5567.   C-b        fill-paragraph
  5568.   C-c        scroll-up-line
  5569.   C-d        forward-char
  5570.   C-e        previous-line
  5571.   C-f        forward-word
  5572.   C-g        delete-char
  5573.   C-h        backward-char
  5574.   C-i        indent-for-tab-command
  5575.   C-j        help-for-help
  5576.   C-k        ordstar-C-k-map
  5577.   C-l        ws-repeat-search
  5578.   C-n        open-line
  5579.   C-p        quoted-insert
  5580.   C-r        scroll-down-line
  5581.   C-s        backward-char
  5582.   C-t        kill-word
  5583.   C-u        keyboard-quit
  5584.   C-v        overwrite-mode
  5585.   C-w        scroll-down
  5586.   C-x        next-line
  5587.   C-y        kill-complete-line
  5588.   C-z        scroll-up
  5589.  
  5590.   C-k 0        ws-set-marker-0
  5591.   C-k 1        ws-set-marker-1
  5592.   C-k 2        ws-set-marker-2
  5593.   C-k 3        ws-set-marker-3
  5594.   C-k 4        ws-set-marker-4
  5595.   C-k 5        ws-set-marker-5
  5596.   C-k 6        ws-set-marker-6
  5597.   C-k 7        ws-set-marker-7
  5598.   C-k 8        ws-set-marker-8
  5599.   C-k 9        ws-set-marker-9
  5600.   C-k b        ws-begin-block
  5601.   C-k c        ws-copy-block
  5602.   C-k d        save-buffers-kill-emacs
  5603.   C-k f        find-file
  5604.   C-k h        ws-show-markers
  5605.   C-k i        ws-indent-block
  5606.   C-k k        ws-end-block
  5607.   C-k p        ws-print-block
  5608.   C-k q        kill-emacs
  5609.   C-k r        insert-file
  5610.   C-k s        save-some-buffers
  5611.   C-k t        ws-mark-word
  5612.   C-k u        ws-exdent-block
  5613.   C-k C-u    keyboard-quit
  5614.   C-k v        ws-move-block
  5615.   C-k w        ws-write-block
  5616.   C-k x        kill-emacs
  5617.   C-k y        ws-delete-block
  5618.  
  5619.   C-o c        center-line
  5620.   C-o b        switch-to-buffer
  5621.   C-o j        justify-current-line
  5622.   C-o k        kill-buffer
  5623.   C-o l        list-buffers
  5624.   C-o m        auto-fill-mode
  5625.   C-o r        set-fill-column
  5626.   C-o C-u    keyboard-quit
  5627.   C-o wd    delete-other-windows
  5628.   C-o wh    split-window-horizontally
  5629.   C-o wo    other-window
  5630.   C-o wv    split-window-vertically
  5631.  
  5632.   C-q 0        ws-find-marker-0
  5633.   C-q 1        ws-find-marker-1
  5634.   C-q 2        ws-find-marker-2
  5635.   C-q 3        ws-find-marker-3
  5636.   C-q 4        ws-find-marker-4
  5637.   C-q 5        ws-find-marker-5
  5638.   C-q 6        ws-find-marker-6
  5639.   C-q 7        ws-find-marker-7
  5640.   C-q 8        ws-find-marker-8
  5641.   C-q 9        ws-find-marker-9
  5642.   C-q a        ws-query-replace
  5643.   C-q b        ws-to-block-begin
  5644.   C-q c        end-of-buffer
  5645.   C-q d        end-of-line
  5646.   C-q f        ws-search
  5647.   C-q k        ws-to-block-end
  5648.   C-q l        ws-undo
  5649.   C-q p        ws-last-cursorp
  5650.   C-q r        beginning-of-buffer
  5651.   C-q C-u    keyboard-quit
  5652.   C-q w        ws-last-error
  5653.   C-q y        ws-kill-eol
  5654.   C-q DEL    ws-kill-bol
  5655. " t nil)
  5656.  
  5657. ;;;***
  5658.  
  5659. ;;;### (autoloads (run-scheme) "xscheme" "xscheme.el" (11185 17047))
  5660. ;;; Generated autoloads from xscheme.el
  5661.  
  5662. (autoload (quote run-scheme) "xscheme" "\
  5663. Run an inferior Scheme process.
  5664. Output goes to the buffer `*scheme*'.
  5665. With argument, asks for a command line." t nil)
  5666.  
  5667. ;;;***
  5668.  
  5669. ;;;### (autoloads (psychoanalyze-pinhead yow) "yow" "yow.el" (11285 51586))
  5670. ;;; Generated autoloads from yow.el
  5671.  
  5672. (autoload (quote yow) "yow" "\
  5673. Return or display a random Zippy quotation." t nil)
  5674.  
  5675. (autoload (quote psychoanalyze-pinhead) "yow" "\
  5676. Zippy goes to the analyst." t nil)
  5677.  
  5678. ;;;***
  5679.  
  5680. ;;; Don't make backup versions of this file - most of it is generated
  5681. ;;; automatically by autoload.el, and what isn't changes rarely.
  5682. ;;; Local Variables:
  5683. ;;; version-control: never
  5684. ;;; no-byte-compile: t
  5685. ;;; no-update-autoloads: t
  5686. ;;; End:
  5687. ;;; loaddefs.el ends here
  5688.